riak-1.0.1.0: A Haskell client for the Riak decentralized data store

Copyright(c) 2011 MailRank, Inc.
LicenseApache
MaintainerMark Hibberd <mark@hibberd.id.au>, Nathan Hunter <nhunter@janrain.com>
Stabilityexperimental
Portabilityportable
Safe HaskellNone
LanguageHaskell98

Network.Riak.Response

Contents

Description

Smart deconstructors for Riak types. These functions correctly URL-unescape bucket, key, and link names. You should thus use them in preference to direct pattern matching against raw data constructors.

Synopsis

Connection management

getClientID :: GetClientIDResponse -> ClientID Source

Data management

get :: Maybe GetResponse -> Maybe (Seq Content, VClock) Source

Construct a get response. Bucket and key names in links are URL-unescaped.

put :: PutResponse -> (Seq Content, VClock) Source

Construct a put response. Bucket and key names in links are URL-unescaped.

Metadata

listBuckets :: ListBucketsResponse -> Seq Bucket Source

Construct a list-buckets response. Bucket names are unescaped.

getBucket :: GetBucketResponse -> BucketProps Source

unescapeLinks :: Content -> Content Source

URL-unescape the names of keys and buckets in the links of a Content value.

search :: SearchQueryResponse -> [SearchResult] Source

getIndex :: YzIndexGetResponse -> [IndexInfo] Source