This commit is contained in:
2026-03-06 02:27:52 +08:00
parent f598cc8157
commit 70c4966aad
80 changed files with 796 additions and 1191 deletions
+3 -3
View File
@@ -430,7 +430,7 @@ class McpService
'database' => config('thinkorm.connections.mysql.database', ''),
],
'cache' => [
'default' => config('plugin.bilulanlv.think-cache.app.default', 'redis'),
'default' => config('think-cache.app.default', 'redis'),
'stores' => array_keys(config('cache.stores', [])),
]
];
@@ -650,7 +650,7 @@ class McpService
case 'cache':
return [
'default_driver' => config('plugin.bilulanlv.think-cache.app.default', 'redis'),
'default_driver' => config('think-cache.app.default', 'redis'),
'opcache_enabled' => function_exists('opcache_get_status') && opcache_get_status() !== false,
'redis_available' => extension_loaded('redis'),
'memcached_available' => extension_loaded('memcached'),
@@ -697,7 +697,7 @@ class McpService
'charset' => config('thinkorm.connections.mysql.charset', 'utf8mb4'),
'debug' => config('thinkorm.connections.mysql.trigger_sql', true),
],
'cache' => config('plugin.bilulanlv.think-cache.app', []),
'cache' => config('think-cache.app', []),
'session' => config('session', []),
'log' => config('log', []),
];