Popularity
1.5
Stable
Activity
0.6
Declining
5
1
2
Monthly Downloads: 4
Programming language: Elixir
License: Apache License 2.0
Tags:
ORM And Datamapping
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.
-
paper_trail
Track and record all the changes in your database with Ecto. Revert back to anytime in history. -
ecto_psql_extras
Ecto PostgreSQL database performance insights. Locks, index usage, buffer cache hit ratios, vacuum stats and more. -
gremlex
DISCONTINUED. Elixir Client for Gremlin (Apache TinkerPop™) [GET https://api.github.com/repos/Revmaker/gremlex: 404 - Not Found // See: https://docs.github.com/rest/repos/repos#get-a-repository]
Stream - Scalable APIs for Chat, Feeds, Moderation, & Video.
Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.
Promo
getstream.io

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of ssdb_elixir or a related project?
README
SSDB client
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)>