Changes between Initial Version and Version 1 of Ticket #7639, comment 6


Ignore:
Timestamp:
Jul 2, 2014, 1:56:18 AM (10 years ago)
Author:
chaobin

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #7639, comment 6

    initial v1  
    33In a multiprocess environment, typically such as httpd '''prefork''' mode, each forked process has its own cache object, which means the memory consumption of locmem is '''size(cache_object) * num_of_processes_forked'''. Also, in order for each process to be able to hit cache with a found value, it will first have to '''"warm"''' every cache object in each process by ''cache.set()'', consequently, hit rates is also compromised, slightly.
    44
    5 Aside from those, locmem could be a good choice for a small project that wants some level of caching and simplicity.
     5Aside from those, locmem could be a good choice for a small project that wants some level of caching withsimplicity.
    66
    77Still, the doc should have an additional note on this, or a link to this ticket.
Back to Top