sphinx-0.6.1: Haskell bindings to the Sphinx full-text searching daemon.
Safe HaskellSafe-Inferred
LanguageHaskell2010

Text.Search.Sphinx.Configuration

Synopsis

Documentation

data Configuration Source #

The configuration for a query

A note about encodings: The encoding specified here is used to encode every Text value that is sent to the server, and it used to decode all of the server's answers, including error messages.

If the specified encoding doesn't support characters sent to the server, they will silently be substituted with the byte value of '\SUB' :: Char before transmission.

If the server sends a byte value back that the encoding doesn't understand, the affected bytes will be converted into special values as specified by that encoding. For example, when decoding invalid UTF-8, all invalid bytes are going to be substituted with '\65533' :: Char.

Constructors

Configuration 

Fields

Instances

Instances details
Show Configuration Source # 
Instance details

Defined in Text.Search.Sphinx.Configuration

defaultConfig :: Configuration Source #

A basic, default configuration.