php - Memcache that is not TCP-based? -
i implemented memcache
, memcached
php implementation. none of them fast enough, since based on tcp. nice if there solution stored data across sessions, directly in memory.
is possible? haven't been able find solution allows me so.
edit
"not fast enough" in trying store 130 rows, 100 times. each rowset has different data defined key. defining them fast. limitation might serialization, since data not large byte-wise.
i hoping in-memory solution supports storing object's bytes directly in memory rid of need serialization.
i tried ig_binary
serialization mode memcached
.
use apc, alternative php cache. works on same host, indeed doesn't use network traffic.
Comments
Post a Comment