Popularity
1.5
Stable
Activity
0.6
Declining
5
1
2
Monthly Downloads: 26
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.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai
* 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)>