How to persist a very abstract data type between sessions: PHP
Posted
by Greelmo
on Stack Overflow
See other posts from Stack Overflow
or by Greelmo
Published on 2010-04-27T00:15:17Z
Indexed on
2010/04/27
0:33 UTC
Read the original article
Hit count: 422
I have an abstract data type that behaves much like stack. It represents a history of "graph objects" made by a particular user.
Each "graph object" holds one or more "lines", a date range, keys, and a title.
Each "line" holds a sql generator configured for a particular subset of data in my db.
I would like for these "histories" to be available to users between their sessions. It will be in the form of a tab that reads something like "most recent graphs".
What do you believe to be the best way to persist this type of data between sessions. This application could get rather large, so efficiency is a concern. Thanks in advance.
© Stack Overflow or respective owner