memcache-0.1.0.1: A memcached client library.

Safe HaskellNone
LanguageHaskell2010

Database.Memcache.Protocol

Description

A raw, low level interface to the memcached protocol.

The various operations are represented in full as they appear at the protocol level and so aren't generally well suited for application use. Instead, applications should use Database.Memcache.Client which presents a higher level API suited for application use.

Synopsis

Documentation

type StatResults = [(ByteString, ByteString)] Source

StatResults are a list of key-value pairs.

noop :: Server -> IO () Source

quit :: Server -> IO () Source