How can I build a session handler in php that store sessions data in neo4j database? How can I draw a schema good schema for neo4j for save sessions user data and manage user authentication for a web application?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You'll need to create a SessionHandler instance that uses the Neo4J REST API. There is a PHP library that should cover communicating with Neo4J: as it is a graph database you don't really need to lose sleep over a schema in advance. The session interface just requires you to save/retrieve an associative array: unless you are explicitly planning to browse through the data via some other language you can just serialize it to a string (or to JSON) and store it as a property in a new node keyed by the session id. |
|||||||||
|