egorov/

在 Tarantool 数据库中的 Yii 2 会话

安装: 14

依赖: 0

建议者: 0

安全: 0

类型:yii-extension

1.0.8 2018-09-06 14:47 UTC

This package is auto-updated.

Last update: 2024-09-21 23:00:47 UTC


README

在 Tarantool 数据库中的 Yii 2 会话

 ...
 components => [  
     ...  
     'session' => [
         // 'class' => CHttpSession::class,
         'class' => Tarantool\Session\Session::class,
         'sessionSpace'=>'Session',
         'server' => "tcp://sid_tarantool:3301",
         'socket_timeout' => 5.0,
         'connect_timeout' => 5.0,
         'tcp_nodelay' => true,
         'sessionStorage' => Tarantool\Session\Session::STORAGE_DISC, // or STORAGE_MEMORY
         'packer' => Tarantool\Session\Session::PACKER_PURE, // or PACKER_PECL
         'username' => 'tarantool',
         'password' => 'password'
     ],
     ...  
 ]  
 ...