Skip to content

yoavlt/jsonlex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Jsonlex

Jsonlex is jsonl file format logger. This provide simple storage approach.

Jsonlex can write json data concurrently that prevent applications slow down. We can analyze unstructure data using like Pandas etc. This module uses Jason for json encoder. It allows this module blazing fast writing jsonl files.

And fortunately, elixir can handle huge amount files utilizing multicore processes and have massive tools easily.

  iex> Jsonlex.start_link :jsonl, filename: "/tmp/some_filename.jsonl"
  iex> Jsonlex.puts :jsonl, %{"ts" => DateTime.now("Etc/UTC") |> elem(1) |> DateTime.to_unix, "hoge" => "fuga"}

Jsonlex allow datetime format.

  iex> Jsonlex.start_link :jsonl, format: "/tmp/some_storage/%Y-%m-%d-%H.jsonl"

Installation

If available in Hex, the package can be installed by adding jsonlex to your list of dependencies in mix.exs:

def deps do
  [
    {:jsonlex, "~> 0.1.0"}
  ]
end

Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/jsonlex.

About

Simple jsonl format storage for elixir

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages