diff --git a/CHANGELOG.md b/CHANGELOG.md index e85384e..4adce3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## v6.0.94 / 2020-07-20 +## v6.0.95 / 2020-07-20 - 优化cache和session服务 ## v6.0.93 / 2020-07-20 diff --git a/src/cache/Mysql.php b/src/cache/Mysql.php index bf9967b..9f77197 100644 --- a/src/cache/Mysql.php +++ b/src/cache/Mysql.php @@ -87,7 +87,7 @@ class Mysql ->where('cache_name', $this->cache_name) ->whereTime('cache_expire', '>=', time()) ->order('cache_expire desc') - ->value('access_token', ''); + ->value('cache_value', ''); } /** diff --git a/src/common.php b/src/common.php index 78e9dc6..3f9e6cb 100644 --- a/src/common.php +++ b/src/common.php @@ -26,7 +26,7 @@ use think\db\exception\DbException; /** * 定义当前版本 */ -const VERSION = '6.0.94'; +const VERSION = '6.0.95'; if (!function_exists('get_ip_info')) { /**