File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -212,6 +212,8 @@ $server = Server::builder()
212212 ->build();
213213
214214// Override with PSR-16 cache-based storage
215+ // Requires psr/simple-cache and symfony/cache (or any other PSR-16 implementation)
216+ // composer require psr/simple-cache symfony/cache
215217$redisAdapter = new RedisAdapter(
216218 RedisAdapter::createConnection('redis://localhost:6379'),
217219 'mcp_sessions'
Original file line number Diff line number Diff line change @@ -159,6 +159,8 @@ $server = Server::builder()
159159 ->build();
160160
161161// Override with PSR-16 cache-based storage
162+ // Requires psr/simple-cache and symfony/cache (or any other PSR-16 implementation)
163+ // composer require psr/simple-cache symfony/cache
162164$redisAdapter = new RedisAdapter(
163165 RedisAdapter::createConnection('redis://localhost:6379'),
164166 'mcp_sessions'
You can’t perform that action at this time.
0 commit comments