Large PHP arrays or MySQL temporary memory tables?
Posted
by Mads Jensen
on Stack Overflow
See other posts from Stack Overflow
or by Mads Jensen
Published on 2010-06-14T18:40:10Z
Indexed on
2010/06/14
18:42 UTC
Read the original article
Hit count: 307
How would you temporarily store several thousands key => value
or key => array
pairs within a single process. Lookups on key
will be done continuously within the process, and the data is discarded when the process ends.
Should i use arrays? temporary MySQL tables? Or something in between?
© Stack Overflow or respective owner