For version 0.1.0
last update: Fri Aug 10 2007
http://fixedpoint.jp/gauche-memcache/
Warning: still unstable.
The class abstracts connections to memcached.
You will get its instance by calling procedure "memcache-connect".
These errors represent ERROR, CLIENT_ERROR and SERVER_ERROR from memcached respectively.
An instance of either <memcache-client-error> or <memcache-server-error> has slot 'message'.
Return a connection to memcached. An error occurs if failed.
Close the connection. See also method "quit".
The parameter *memcache-read-line-max* keeps the max of length of the response line, which default value is 256
For *memcache-read-retry-max* and *memcache-read-nanosecond*, read the source.
Set the value with key by command 'set'/'add'/'replace', resp.
Return #t in case of success, or #f otherwise.
Return entries with keys as alist.
Delete the entry with key.
Return #t if done, or #f otherwise.
Increment/decrement the entry with key by value.
Return the resulting value if done, or #f if there is no such entry.
Return the stats of memcached as string.
Drop all of the entries with possible delay.
Return #t in case of success.
Return the version of memcached as string.
Publish command 'quit'. See also method "memcache-close".