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: 278

Filed under:
|
|
|

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

Related posts about php

Related posts about mysql