Popularity
2.4
Stable
Activity
0.0
Stable
14
1
1
Monthly Downloads: 0
Programming language: Elixir
License: Apache License 2.0
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.
-
extreme
An Elixir library using Eventstore for persistance of events generated by aggregates (CQRS).
Get performance insights in less than 4 minutes
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
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
> []