Bucketier: A Simple Key/Value Store in Elixir

Posted on Sep 21, 2025

A Bucket

bucketier is a simple key/value store for Elixir. It provides a straightforward way to store and retrieve data in named buckets.

The main purpose of bucketier is to offer a simple and easy-to-use API for managing key/value data. You can create named buckets, put data into them, and get it back when you need it.

It’s a great choice for situations where you need a simple in-memory storage solution without the overhead of a full-fledged database. It can be useful for caching, session management, or any other scenario where you need to store temporary data.

The library is designed to be simple and easy to use. You can get started with just a few lines of code. The documentation on Hexdocs provides a clear guide on how to use it.

While the current version of bucketier provides the basic functionality of a key/value store, there are plans to add more features in the future, such as updating and deleting entries, and even persistence.

If you’re looking for a simple and lightweight key/value store for your Elixir application, bucketier is definitely worth a look.