Packages

Revolutionary physics-inspired graph database with 23,742 ops/sec performance

Current section

Files

Jump to
warp_engine lib islab_db entropy_registry.ex
Raw

lib/islab_db/entropy_registry.ex

defmodule IsLabDB.EntropyRegistry do
@moduledoc """
Registry for Entropy Monitors in the IsLab Database system.
This registry maintains references to all active entropy monitoring
processes and provides lookup functionality for the entropy system.
"""
def child_spec(_) do
Registry.child_spec(
keys: :unique,
name: __MODULE__
)
end
end