diff options
author | Yen-Ming Lee <leeym@FreeBSD.org> | 2008-01-23 08:01:45 +0000 |
---|---|---|
committer | Yen-Ming Lee <leeym@FreeBSD.org> | 2008-01-23 08:01:45 +0000 |
commit | ce6247b33b836919a74eb2af2fdf51893f02868f (patch) | |
tree | f6edb285543e0b730e349d079625c7d57451c9e5 /databases/libmemcached/pkg-descr | |
parent | 49cc29edd1bdcd9b887940ec1affe22234770438 (diff) |
Notes
Diffstat (limited to 'databases/libmemcached/pkg-descr')
-rw-r--r-- | databases/libmemcached/pkg-descr | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/databases/libmemcached/pkg-descr b/databases/libmemcached/pkg-descr new file mode 100644 index 000000000000..47bd9c83467c --- /dev/null +++ b/databases/libmemcached/pkg-descr @@ -0,0 +1,23 @@ +libmemcached is a C and C++ client library to the memcached server +(http://danga.com/memcached). It has been designed to be light on memory usage, +thread safe, and provide full access to server side methods. + +A few notes on its design: + +# Synchronous and Asynchronous support. +# TCP and Unix Socket protocols. +# A half dozen or so different hash algorithms. +# Implementations of the new cas, replace, and append operators. +# Man pages written up on entire API. +# Implements both modulo and consistent hashing solutions. + +It also implements several command line tools: + +memcat - Copy the value of a key to standard output +memflush - Flush the contents of your servers. +memrm - Remove a key(s) from the serrver. +memcp - Copy files to a memached server. +memstat - Dump the stats of your servers to standard output +memslap - Generate testing loads on a memcached cluster + +WWW: http://tangent.org/552/libmemcached.html |