Popularity
1.7
Growing
Activity
0.0
Stable
7
2
1
Monthly Downloads: 0
Programming language: Elixir
License: Apache License 2.0
Tags:
ORM And Datamapping
Latest version: v0.0.1
ets_map alternatives and similar packages
Based on the "ORM and Datamapping" category.
Alternatively, view ets_map 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. -
ExAudit
Ecto auditing library that transparently tracks changes and can revert them. -
ecto_psql_extras
Ecto PostgreSQL database performance insights. Locks, index usage, buffer cache hit ratios, vacuum stats and more. -
arbor
Ecto elixir adjacency list and tree traversal. Supports Ecto versions 2 and 3. -
sqlitex
An Elixir wrapper around esqlite. Allows access to sqlite3 databases. -
boltun
Transforms notifications from the Postgres LISTEN/NOTIFY mechanism into callback execution -
sql_dust
Easy. Simple. Powerful. Generate (complex) SQL queries using magical Elixir SQL dust.
ONLYOFFICE Docs — document collaboration in your environment
Powerful document editing and collaboration in your app or environment. Ultimate security, API and 30+ ready connectors, SaaS or on-premises
Promo
www.onlyoffice.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 ets_map or a related project?
README
ETSMap
A Map-like Elixir data structure that is backed by an ETS table.
Installation
The package can be installed by:
Adding ets_map to your list of dependencies in
mix.exs
:def deps do [{:ets_map, "~> 0.0.1"}] end
Ensuring ets_map is started before your application:
def application do [applications: [:ets_map]] end