Changeset 599

Show
Ignore:
Timestamp:
07/10/07 16:46:15 (2 years ago)
Author:
bradfitz
Message:

fixes from Paul Querna

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/server/doc/binary-protocol-plan.txt

    r598 r599  
    4040  getq   - like get, but quiet.  that is, no cache miss, return nothing. 
    4141 
     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 
    4246      Note: clients should implement multi-get (still important for 
    4347            reducing network roundtrips!) as n pipelined requests, the 
     
    4751            thing and send n pipelined gets, but then you could potentially 
    4852            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. 
    4955 
    5056  delete