> Does the memcached protocol support multiple commands in a single TCP > packet? The protocol doc (http://code.sixapart.com/svn/memcached/ > trunk/server/doc/protocol.txt) says this is possible with UDP, but I > have a case where TCP packets contain multiple commands. For example > (some data changed to protect the innocent):
TCP is a stream protocol and has no concept of "packets" so what you're seeing is a natural consequence of that. Dean.
