I 'v posted my question some days ago in the official arangodb website , but no lucks no people answer it . so i come to here . below is my question:
just want to know if use arangoDb as a php sessionHandler , how can i delete the session data that expired !
if use the mogodb or mysql to store the session data, we can use such statement to remove the expired data: db.session.remove( { expire: { $gt :} } ) or the sql : delete from tbl_session where expire<:expire
I just want to know how this can be implemented in arangodb . :)