I sent my question a few days ago to the arangodb official website, but no one answered that no one was answering it. therefore I come here. below is my question:
just want to know if you use arangoDb as php sessionHandler, how can I delete session data that has expired!
if you use mogodb or mysql to store session data, we can use this operator to delete obsolete data: db.session.remove ({expire: {$ gt:}}) or sql: remove from tbl_session, where expire <: expire
I just want to know how this can be implemented in arangodb. :)
source
share