dominicletz

dominicletz

Creator of Elixir Desktop

DetsPlus - Pure Elixir replacement for `:dets` without the size limitation

Hey there,

for a side project I needed to store more than those max. 2gb that the builtin :dets supports and so I created this new pure Elixir library DetsPlus.

It has mostly the same API but is a more Elixir friendly as it supports the Enum protocol and structs/maps!. So you can do Enum.reduce() and friends on it.

When storing maps/structs we have to specify as kepos the field name instead of the element index for tuples. E.g. here an example storing maps with DetsPlus:

{:ok, dets} = DetsPlus.open_file(:example, keypos: :id)
DetsPlus.insert(dets, %{id: 1, value: 42})
[{%id: 1, value: 42}] = DetsPlus.lookup(dets, 1)
# or using the Enum protocol:
[{%id: 1, value: 42}] = Enum.to_list(dets)
:ok =  DetsPlus.close(dets)

It’s using a constant database approach inspired by D.J. Bernsteins CDB library https://cr.yp.to/cdb.html - and so key lookups are extremely efficient even though it’s going to disk. Also when updating the database the whole file is being replaced atomically making DetsPlus great for embedded and Nerves use cases where power might be gone at any time.

Docs: DetsPlus — DetsPlus v2.4.4
Github: GitHub - dominicletz/dets_plus: Pure Elixir disk backed key-value store. · GitHub

Add it to your deps and let me know any feedback!

def deps do
  [
    {:dets_plus, "~> 2.1"}
  ]
end

First 3 of 3 Posts! Switch mode

richgal

richgal

Hi @dominicletz ,

Thanks for sharing this module, I immediatly started using it :slight_smile:

I ran into one issue. When I call the DetsPlus.close function a PagedFile process stays alive in hibernated mode and spawn a new process every time I call DetsPlus.open_file or DetsPlus.lookup.

Am I missing something and this the normal working of this module?

I made a github issue also, to help with follow up.

dominicletz

dominicletz

Creator of Elixir Desktop

Thanks @richgal that’s fixed!

richgal

richgal

Happy to hear, I’ll try out soon. I’m planning to use DetsPlus in a production app.

Where Next?

Trending in Announcing Top

bluzky
You may know https://ui.shadcn.com/, a UI component library for React. I really love it’s design style and components. I’ve built some co...
385 14863 120
New
JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
shahryarjb
The Chelekom project is a library of Phoenix and LiveView components generated via Mix tasks to fit developer needs seamlessly. One of i...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve. They are GUI (Emerge) and State management (S...
New
ausimian
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
zachdaniel
Introducing AshStorage! Attachment and file management that slots directly into your resources :smiling_face_with_sunglasses: I had hope...
New

Other Trending Topics Top

type1fool
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
akoutmos
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New
juhalehtonen
There has been a thread to discuss the Stack Overflow Developer Survey on this forum every year since 2018, so here’s yet another one for...
New
bjorng
We want to introduce a new native datatype to Erlang: native records. Although replacing all tuple records with native records is not our...
New
spammy
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
yureehuh
Introduction Founded in 2017 by landscape ecologist and fire mitigation expert Harry Statter, Frontline developed the first fully integra...
New

We're in Beta

About us Mission Statement