close
The Wayback Machine - https://web.archive.org/web/20220519030037/https://github.com/ananthakumaran/memcachex
Skip to content
master
Switch branches/tags
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
lib
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Memcache

CI Hex.pm Hex Docs Total Download License Last Updated

Memcached client for Elixir.

Installation

defp deps() do
  [
    {:memcachex, "~> 0.5"}
  ]
end

Overview

Memcachex comes with two kinds of API, a high level one named Memcache which provides functions to perform most of the common usecases and a low level one named Memcache.Connection which provides a less restrictive API. See the documentation for more information

Examples

{:ok, pid} = Memcache.start_link()
{:ok} = Memcache.set(pid, "hello", "world")
{:ok, "world"} = Memcache.get(pid, "hello")

See test folder for further examples.

Copyright and License

Copyright (c) 2014 Anantha Kumaran

This software is licensed under the MIT license.