gpt4 book ai didi

Codeigniter 3 session 与 redis - AUTH 密码

转载 作者:可可西里 更新时间:2023-11-01 10:58:05 26 4
gpt4 key购买 nike

我是 Redis 的初学者。我对 codeigniter 3 文档感到很困惑。

我刚刚安装了一个 redis 服务器,并在我的应用程序中使用了带有 redis 的 ci session 库。它工作得很好......但没有提到密码授权。

这是我的 config.php :

$config['sess_driver'] = 'redis';
$config['sess_save_path'] = 'tcp://localhost:6379';
$config['sess_cookie_name'] = 'ci_session';
$config['sess_expiration'] = 7200;
$config['sess_match_ip'] = TRUE;
$config['sess_time_to_update'] = 300;
$config['sess_regenerate_destroy'] = FALSE;

我该如何申请授权?我想每个人都可以以实际方式访问我的 session 表。

最佳答案

session library documentation在其顶部有一堆链接,即所谓的“目录”。

其中一个链接名为“Redis Driver”,指向 ... "Redis Driver" section of the document ,其中仅包含几个短段落,这样您就不会在大量文本之间迷失方向。

这些段落中只有一个提到了“config”这个词,它说了以下内容:

Just as with the ‘files’ and ‘database’ drivers, you must also configure the storage location for your sessions via the $config['sess_save_path'] setting. The format here is a bit different and complicated at the same time. It is best explained by the phpredis extension’s README file, so we’ll simply link you to it:

https://github.com/phpredis/phpredis#php-session-handler

当然,该文档不包含“身份验证”一词,但这不会造成混淆……您只需单击一个链接即可。

为清楚起见并提供一个具体示例:"tcp://host:port?auth=password"

关于Codeigniter 3 session 与 redis - AUTH 密码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36058824/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com