[OBSOLETE] An extension to CodeIgniter session library with optional MongoDB backend.
Stars
25
Forks
13
Watchers
25
Open Issues
1
Overall repository health assessment
No package.json found
This might not be a Node.js project
11
commits
1
commits
do not use object id as session id, mongodb index can achieve similar lookup speed with a simple index on session_id field, with this change we completely avoid truncating md5 session id to 24 hex string, and we reduce the query needed in sess_update from 3 (get, delete, insert) to 1 (update)
687f743View on GitHuba few bugfix: 1. update mongodbe last_activity in sess_update; 2. keep up with codeigniter 2.1.3 changes on sess_destroy; 3. do not affect mysql session id generation, substr when needed to generate mongodb objectID
19fd476View on GitHubFixed _sess_gc() to purge all expired session. Thanks to @dthpto
2b40b41View on GitHubLinked to the V2 branch of MongoDB active record library.
1a5301cView on GitHubFixed a major bug in sess_update() which cause improper document insetions, plus other minor improvements.
a48a24aView on GitHub