View Source Pockets.EtsInfo (Pockets v1.4.0)

A struct defining information about an Erlang :ets in-memory table, adapted from :ets.info/1

This struct is one of the possible values returned from Pockets.info/1.

Link to this section Summary

Link to this section Types

@type t() :: %Pockets.EtsInfo{
  compressed: any(),
  decentralized_counters: any(),
  heir: any(),
  id: Pockets.alias(),
  keypos: integer(),
  memory: any(),
  name: atom(),
  named_table: boolean(),
  node: any(),
  owner: any(),
  protection: any(),
  read_concurrency: boolean(),
  size: integer(),
  type: :bag | :duplicate_bag | :set,
  write_concurrency: boolean()
}

Link to this section Functions