|
@@ -6,7 +6,7 @@ use Aliyun\OTS\Consts\OperationTypeConst;
|
|
|
use Aliyun\OTS\Consts\PrimaryKeyTypeConst;
|
|
|
use Aliyun\OTS\Consts\RowExistenceExpectationConst;
|
|
|
use Aliyun\OTS\OTSClient;
|
|
|
-
|
|
|
+use think\facade\Cache;
|
|
|
/**
|
|
|
* 查询Gps股轨迹 表格存储
|
|
|
*/
|
|
@@ -1389,6 +1389,16 @@ use Aliyun\OTS\OTSClient;
|
|
|
trigger_error(htmlentities($e['message'], ENT_QUOTES), E_USER_ERROR);
|
|
|
}
|
|
|
$whereStr=buildQueryCond($cond);
|
|
|
+
|
|
|
+ $redis=Cache::store('redis')->handler();
|
|
|
+ $redis_info= $redis->hget('vehicle_table_count', $whereStr);
|
|
|
+ if($redis_info){
|
|
|
+ $info=json_decode($redis_info,true);
|
|
|
+ if((time()-$info['time'])<24*3600){
|
|
|
+ return $info['count'];
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
$countQuery='SELECT count(*) as count FROM '.$tableName.' '.$whereStr;
|
|
|
// var_dump($countQuery);
|
|
|
// return 0;
|
|
@@ -1403,6 +1413,11 @@ use Aliyun\OTS\OTSClient;
|
|
|
// var_dump($rows);
|
|
|
oci_free_statement($stid);
|
|
|
oci_close($conn);
|
|
|
+ $rds_info=[
|
|
|
+ 'count'=>(int)$rows[0]['COUNT'],
|
|
|
+ 'time'=>time(),
|
|
|
+ ];
|
|
|
+ $res=$redis->hset('vehicle_table_count', $whereStr,json_encode($rds_info));
|
|
|
return (int)$rows[0]['COUNT'];
|
|
|
}
|
|
|
|