| CARVIEW |
Select Language
HTTP/1.1 200 OK
Connection: keep-alive
Server: nginx/1.24.0 (Ubuntu)
Content-Type: text/html; charset=utf-8
Cache-Control: public, max-age=300
Content-Encoding: gzip
Via: 1.1 varnish, 1.1 varnish
Accept-Ranges: bytes
Age: 0
Date: Sat, 17 Jan 2026 22:03:20 GMT
X-Served-By: cache-dfw-kdal2120054-DFW, cache-bom-vanm7210032-BOM
X-Cache: MISS, MISS
X-Cache-Hits: 0, 0
X-Timer: S1768687400.927525,VS0,VE757
Vary: Accept, Accept-Encoding
transfer-encoding: chunked
memcache-haskell: Memcache procotol library
memcache-haskell: Memcache procotol library
Modules
[Index]
Flags
Automatic Flags
| Name | Description | Default |
|---|---|---|
| sample | Build sample programs | Disabled |
Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info
Downloads
- memcache-haskell-0.0.10.1.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
| Versions [RSS] | 0.0.10, 0.0.10.1 |
|---|---|
| Change log | ChangeLog.md |
| Dependencies | attoparsec, base (>=4 && <5), bytestring (>=0.9), conduit-extra, containers, hashable, hashtables, memcache-haskell, mtl, network (>=2.3.2), resourcet, split, stm (>=2.4), transformers [details] |
| License | MIT |
| Copyright | (c) 2015 GREE, Inc. |
| Author | Kiyoshi Ikehara |
| Maintainer | Kiyoshi Ikehara |
| Uploaded | by junjihashimoto at 2015-04-27T03:47:10Z |
| Category | Network |
| Bug tracker | https://github.com/gree/memcache-haskell/issues |
| Source repo | head: git clone https://github.com/gree/memcache-haskell.git |
| Distributions | |
| Reverse Dependencies | 2 direct, 0 indirect [details] |
| Executables | memcache-sample-retrieval, memcache-sample-client |
| Downloads | 1616 total (9 in the last 30 days) |
| Rating | (no votes yet) [estimated by Bayesian average] |
| Your Rating |
|
| Status | Docs available [build log] Last success reported on 2015-04-27 [all 1 reports] |
Readme for memcache-haskell-0.0.10.1
[back to package description]memcache-haskell
This package is a memcache protocol library for server and client applications.
Main purpose of this library is making a server itself.
This does not support consistent hashing and any other functions like "libmemcached".
Getting started
Install from Hackage.
cabal update && cabal install memcache-haskell
Usage
- Call
openClientwithip-address:portof memcache-server to obtain a handle. - To set or get a data on the memcache server, call
setorgetwith the handle. - Finally call
closeClientafter you are done.
Example:
main :: IO ()
main = do
client <- openClient "127.0.0.0:11211"
ret <- set client "key" "foo"
print ret
ret' <- get client "key" :: IO (Maybe String)
print ret'
closeClient client
Contributors
- Kiyoshi Ikehara
- Yuji Kamiya
- Junji Hashimoto
License
See LICENSE.
Copyright © Gree, Inc. All Rights Reserved.