- Add
optsGetServerForKey
field toOptions
. - Change how
sid
is calculated. - Expose
getServers
function.
- Bump package dependencies for newer GHC/back/network.
- Update code to work with newer dependencies.
- Fix compatability with latest
data-default-class
- Add new ReqRaw type for external clients to implement custom requests. Quite a hack right now, so behind a WARNING pragma.
- Big design change to reduce code duplication (
Protocol
module gone). - Remove
Options
type - just fixed configuration for now. - Design change also allows proper retry handling on operation failure - we retry an operation against the same server, but after N consecutive failures, we mark the server as dead and don't try using it again until M seconds has passed.
- Simplify exception hierachy - just one type
MemcacheError
now for - Remove
defaultOptions
anddefaultServerSpec
, will revist usefulness. exceptions. - Remove many
Typeable
instances. - Support better testing with a mock Memcached server.
- Fix bug in socket handling - detected EOF properly.
- Greatly improve documentation.
- Use
data-default-class
for defaults of servers and options.
- Consistent usage of 'memcached' instead of 'memcache'.
- Document
Database.Memcache.Client
. - Add inline pragmas in appropriate places.
- Fix bug handling fragmented IP packets (Alfredo Di Napoli).
- First proper release (although still lots of rough edges!).
- Filled out
Data.Memcache.Client
to a complete API. - Integrated cluster and authentication handling.
- Better error and exception handling.
- Fix compilation under GHC 7.10.
- Initial (incomplete) support for a cluster of memcached servers.
- Fixed compilation under GHC 7.4.
- Initial release. Support for a single server.