View Source MishkaInstaller.PluginETS (Mishka Installer v0.0.3)

## ETS part to optimization state instead of dynamic supervisor and Genserver public — Read/Write available to all processes. protected — Read available to all processes. Only writable by owner process. This is the default. private — Read/Write limited to owner process.

#### Essential functions in ETS

  1. :ets.new
        :ets.new(@tab, [:set, :named_table, :public, read_concurrency: true, write_concurrency: true])
  2. :ets.insert
  3. :ets.insert_new
  4. :ets.lookup
  5. :ets.match
  6. :ets.match_object
  7. :ets.select
  8. :ets.fun2ms
  9. :ets.delete
  10. :dets.open_file
  11. :ets.update_counter
  12. :ets.delete_all_objects
  13. :ets.tab2list - to spy on the data in the table
  14. :ets.update_counter
  15. :ets.all
  16. :ets.info

### Refs

Link to this section Summary

Functions

Returns a specification to start this module under a supervisor.

Link to this section Functions