2

我正在寻找共享我的 PHP 会话,所以最简单的解决方案是使用 memcache。但我需要更安全的东西,因为 memcache 没有故障转移、集群化、持久性……</p>

我考虑过 Redis,但它没有处理它的 PHP 模块,所以没有 session_handler

所以基本上,我需要一些东西来集中管理会话并且相对安全。而且我在互联网上的研究也不是很顺利。

4

1 回答 1

1

I thought about Redis, but it doesn't have a PHP module that handle it, so no session_handler

Check phpredis, it provides a session handler for redis, and as for security I don't think you need to configure some sort of authentication, you can somehow make the server only accept the IP's of the application servers.

于 2013-12-25T10:34:21.040 回答