Popularity
1.5
Stable
Activity
0.6
Declining
5
1
2

Monthly Downloads: 32
Programming language: Elixir
License: Apache License 2.0

ssdb_elixir alternatives and similar packages

Based on the "ORM and Datamapping" category.
Alternatively, view ssdb_elixir alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of ssdb_elixir or a related project?

Add another 'ORM and Datamapping' Package

README

SSDB client

Build Status

SSDB client for Elixir

Installation

Releases are published through hex.pm. Add as a dependency in your mix.exs file:

defp deps do
  [ { :ssdb, "~> 0.3.0" } ]
end

Example:

Interactive Elixir (1.0.2) - press Ctrl+C to exit (type h() ENTER for help)
iex(1)> {:ok, pid} = SSDB.start
{:ok, #PID<0.79.0>}
iex(2)> SSDB.query pid,  ["set", "ssdb", "cool"]
{:ok, ["1"]}
iex(3)> SSDB.query ["get", "ssdb"]
{:ok, ["cool"]}
iex(4)> SSDB.query ["exists", "ssdb"]
{:ok, ["1"]}
iex(5)>