View Source Indexed.Entity (Indexed v0.3.4)

Configuration for a type of thing to be indexed.

Link to this section Summary

Types

A field to be indexed. 2-element tuple has the field name and options.

A field name key on a entity struct.

Configuration info for a prefilter.

t()
  • fields : List of field/0s for which pairs of lists should be maintained with the ID sorted ascending and descending.
  • id_key : Specifies how to find the id for a record. It can be an atom field name to access, a function, or a tuple in the form {module, function_name}. In the latter two cases, the record will be passed in. Default :id.
  • lookups : List of entity field names which should be indexed. These fields can be leveraged via Indexed.get_by/4.
  • prefilters : List of tuples indicating which fields should be prefiltered on. This means that separate indexes will be managed for each unique value for each of these fields, across all records of this entity type. Each two-element tuple has the field name atom and a keyword list of options. Allowed options:
  • ref : ETS table reference where records of this entity type are stored, keyed by id. This will be nil in the version compiled into a managed module.

Link to this section Types

@type field() :: {field_name(), opts :: keyword()}

A field to be indexed. 2-element tuple has the field name and options.

options

Options

  • :sort : Indicates how the field should be sorted in ascending order:
@type field_name() :: atom()

A field name key on a entity struct.

@type prefilter_config() :: {field_name(), opts :: keyword()}

Configuration info for a prefilter.

@type t() :: %Indexed.Entity{
  fields: [field()],
  id_key: any(),
  lookups: [field_name()],
  prefilters: [prefilter_config()],
  ref: :ets.tid() | atom() | nil
}
  • fields : List of field/0s for which pairs of lists should be maintained with the ID sorted ascending and descending.
  • id_key : Specifies how to find the id for a record. It can be an atom field name to access, a function, or a tuple in the form {module, function_name}. In the latter two cases, the record will be passed in. Default :id.
  • lookups : List of entity field names which should be indexed. These fields can be leveraged via Indexed.get_by/4.
  • prefilters : List of tuples indicating which fields should be prefiltered on. This means that separate indexes will be managed for each unique value for each of these fields, across all records of this entity type. Each two-element tuple has the field name atom and a keyword list of options. Allowed options:
  • ref : ETS table reference where records of this entity type are stored, keyed by id. This will be nil in the version compiled into a managed module.