Popularity
2.4
Stable
Activity
0.0
Stable
14
1
1
Monthly Downloads: 37
Programming language: Elixir
License:
Tags:
ORM And Datamapping
red alternatives and similar packages
Based on the "ORM and Datamapping" category.
Alternatively, view red 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]
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
Promo
www.saashub.com
* 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 red or a related project?
Popular Comparisons
README
Red
Store relations between entities using redis.
Example: A follow system
import Red
# @vcr2 -{follow}-> @hex_pm
{:ok, _} =
"@vcr2"
|> relation(:follow)
|> add!("@hex_pm")
"@vcr2" |> relation(:follow) |> Enum.at(0)
> "@hex_pm"
# @vcr2 ===follow===> *
count_following = "@vcr2" |> relation(:follow) |> Enum.count
> 100
# @vcr2 <===follow=== *
count_followers = "@vcr2" |> relation(:follow, :in) |> Enum.count
> 43
# jump 10, next 5
"@vcr2" |> relation(:follow) |> offset(10) |> limit(5) |> Enum.to_list
> []