Get Started with ETS
Understand the details of ETS in this lesson.
We'll cover the following
CRUD operations
We need to create a new table with the Erlang :ets.new/2
function to start using ETS. The :ets.new/2
function takes an atom for the name of the table we’re creating and also takes a list of options. Once we have a new table, we’ll see how the CRUD operations work: creating, retrieving, updating, and deleting records.
Try it out
Let’s try this out with a test example.
Get hands-on with 1400+ tech skills courses.