Hi All, Today we ran into an interesting issue.
Running PHP 5.2.9 with memcache session as handler. We wrote a session variable and tried to access it in another page (same session) but it wouldn't work, it actually returned the previous session value stored in that variable. Some investigation later... revealed that the session variable was over 1MB (approx. 1.2mb). Our memcache server currently is set up to use 1GB of RAM. After we shrank the variable to under 1MB it worked fine. Does memcache have a "key" / "value" size limit? Is that something that can be set? Thanks
