Changeset 599
- Timestamp:
- 07/10/07 16:46:15 (2 years ago)
- Files:
-
- trunk/server/doc/binary-protocol-plan.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/server/doc/binary-protocol-plan.txt
r598 r599 40 40 getq - like get, but quiet. that is, no cache miss, return nothing. 41 41 42 Note: you're not guaranteed a response to a getq cache hit until 43 you send a non-getq command later, which uncorks the 44 server which bundles up IOs to send to the client in one go. 45 42 46 Note: clients should implement multi-get (still important for 43 47 reducing network roundtrips!) as n pipelined requests, the … … 47 51 thing and send n pipelined gets, but then you could potentially 48 52 get back a lot of "NOT_FOUND!" error code packets. 53 alternatively, you can send 'n' getqs, followed by an 'echo' 54 or 'noop' command. 49 55 50 56 delete
