Popularity
1.5
Declining
Activity
0.0
Stable
7
2
1

Monthly Downloads: 0
Programming language: Elixir
License: Apache License 2.0
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.

Do you think we are missing an alternative of ets_map or a related project?

Add another 'ORM and Datamapping' Package

README

ETSMap

A Map-like Elixir data structure that is backed by an ETS table.

Installation

The package can be installed by:

  1. Adding ets_map to your list of dependencies in mix.exs:

    def deps do
      [{:ets_map, "~> 0.0.1"}]
    end
    
  2. Ensuring ets_map is started before your application:

    def application do
      [applications: [:ets_map]]
    end