feideconnect/simplesamlphp-module-cassandrastore

该包已被放弃,不再维护。未建议替代包。

SimpleSAMLphp 的 Cassandra 存储库。

v0.1 2019-08-20 11:25 UTC

This package is auto-updated.

Last update: 2019-08-21 06:52:50 UTC


README

SimpleSAMLphp 的 Cassandra 存储库

使用会话存储

在 config.php 中

'session.handler'       => 'cassandrastore:CassandraStore',

使用 Cassandra 元数据存储

在 config.php 中

// Overridden in config.[prod/test].php
'metadata.sources' => array(
    array('type' => 'flatfile'),
    array('type' => 'cassandrastore:CassandraMetadataStore'),
),


'metastore.cassandra.keyspace' => $_ENV['CASSANDRA_KEYSPACE'],
'metastore.cassandra.nodes' => $_ENV['CASSANDRA_PORT_9042_TCP_ADDR'],
'metastore.cassandra.use_ssl' => false,
'metastore.cassandra.ssl_ca' => null,
'metastore.cassandra.username' => null,
'metastore.cassandra.password' => null,