Using Redis to save serialized object. No error when trying to write to it. When getting the info back the string comes back cut off. Are there any settings I'm overlooking? It looks like the limit where I get cut off is 16 kb. Data is coming from MongoDB to Redis and then gets requested by PHP.
the doc on the left is what I send in, on the right is what I get back. Everything after the yellow highlighted text is missing in the response on the right.
Doubt it's redis since max string value is huge: http://redis.io/topics/data-types
PHP max string size is huge: What is the maximum length of a String in PHP?
Smart money on the serializer/deserializer. Check every step you can along the way (ie check directly selecting from mongoDb).