1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
|
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE erlref SYSTEM "erlref.dtd">
<erlref>
<header>
<copyright>
<year>1996</year><year>2017</year>
<holder>Ericsson AB. All Rights Reserved.</holder>
</copyright>
<legalnotice>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
</legalnotice>
<title>ets</title>
<prepared></prepared>
<docno></docno>
<date></date>
<rev></rev>
</header>
<module>ets</module>
<modulesummary>Built-in term storage.</modulesummary>
<description>
<p>This module is an interface to the Erlang built-in term storage
BIFs. These provide the ability to store very large quantities of
data in an Erlang runtime system, and to have constant access
time to the data. (In the case of <c>ordered_set</c>, see below,
access time is proportional to the logarithm of the number of
stored objects.)</p>
<p>Data is organized as a set of dynamic tables, which can store
tuples. Each table is created by a process. When the process
terminates, the table is automatically destroyed. Every table has
access rights set at creation.</p>
<p>Tables are divided into four different types, <c>set</c>,
<c>ordered_set</c>, <c>bag</c>, and <c>duplicate_bag</c>.
A <c>set</c> or <c>ordered_set</c> table can only have one object
associated with each key. A <c>bag</c> or <c>duplicate_bag</c> table can
have many objects associated with each key.</p>
<note>
<p>
The number of tables stored at one Erlang node <em>used</em> to
be limited. This is no longer the case (except by memory usage).
The previous default limit was about 1400 tables and
could be increased by setting the environment variable
<c>ERL_MAX_ETS_TABLES</c> before starting the Erlang runtime
system. This hard limit has been removed, but it is currently
useful to set the <c>ERL_MAX_ETS_TABLES</c> anyway. It should be
set to an approximate of the maximum amount of tables used. This since
an internal table for named tables is sized using this value. If
large amounts of named tables are used and <c>ERL_MAX_ETS_TABLES</c>
hasn't been increased, the performance of named table lookup will
degrade.
</p>
</note>
<p>Notice that there is no automatic garbage collection for tables.
Even if there are no references to a table from any process, it
is not automatically destroyed unless the owner process
terminates. To destroy a table explicitly, use function
<seealso marker="#delete/1"><c>delete/1</c></seealso>.
The default owner is the process that created the
table. To transfer table ownership at process termination, use
option <seealso marker="#heir"><c>heir</c></seealso> or call
<seealso marker="#give_away/3"><c>give_away/3</c></seealso>.</p>
<p>Some implementation details:</p>
<list type="bulleted">
<item><p>In the current implementation, every object insert and
look-up operation results in a copy of the object.</p></item>
<item><p><c>'$end_of_table'</c> is not to be used as a key, as
this atom is used to mark the end of the table when using functions
<seealso marker="#first/1"><c>first/1</c></seealso> and
<seealso marker="#next/2"><c>next/2</c></seealso>.</p></item>
</list>
<p>Notice the subtle difference between
<em>matching</em> and <em>comparing equal</em>, which is
demonstrated by table types <c>set</c> and <c>ordered_set</c>:</p>
<list type="bulleted">
<item>
<p>Two Erlang terms <c>match</c> if they are of
the same type and have the same value, so that <c>1</c> matches
<c>1</c>, but not <c>1.0</c> (as <c>1.0</c> is a <c>float()</c>
and not an <c>integer()</c>).</p>
</item>
<item>
<p>Two Erlang terms <em>compare equal</em>
if they either are of the same type and value, or if
both are numeric types and extend to the same value, so that
<c>1</c> compares equal to both <c>1</c> and <c>1.0</c>.</p>
</item>
<item>
<p>The <c>ordered_set</c> works on the <em>Erlang term order</em> and
no defined order exists between an <c>integer()</c> and a
<c>float()</c> that extends to the same value. Hence the key
<c>1</c> and the key <c>1.0</c> are regarded as equal in an
<c>ordered_set</c> table.</p>
</item>
</list>
</description>
<section>
<title>Failure</title>
<p>The functions in this module exits with reason
<c>badarg</c> if any argument has the wrong format, if the
table identifier is invalid, or if the operation is denied because of
table access rights (<seealso marker="#protected">protected</seealso>
or <seealso marker="#private">private</seealso>).</p>
</section>
<section><marker id="concurrency"></marker>
<title>Concurrency</title>
<p>This module provides some limited support for concurrent access.
All updates to single objects are guaranteed to be both <em>atomic</em>
and <em>isolated</em>. This means that an updating operation to
a single object either succeeds or fails completely without any
effect (atomicity) and that
no intermediate results of the update can be seen by other
processes (isolation). Some functions that update many objects
state that they even guarantee atomicity and isolation for the entire
operation. In database terms the isolation level can be seen as
"serializable", as if all isolated operations are carried out serially,
one after the other in a strict order.</p>
<p>No other support is available within this module that would guarantee
consistency between objects. However, function
<seealso marker="#safe_fixtable/2"><c>safe_fixtable/2</c></seealso>
can be used to guarantee that a sequence of
<seealso marker="#first/1"><c>first/1</c></seealso> and
<seealso marker="#next/2"><c>next/2</c></seealso> calls traverse the
table without errors and that each existing object in the table is
visited exactly once, even if another (or the same) process
simultaneously deletes or inserts objects into the table.
Nothing else is guaranteed; in particular objects that are inserted
or deleted during such a traversal can be visited once or not at all.
Functions that internally traverse over a table, like
<seealso marker="#select/1"><c>select</c></seealso> and
<seealso marker="#match/1"><c>match</c></seealso>,
give the same guarantee as
<seealso marker="#safe_fixtable/2"><c>safe_fixtable</c></seealso>.</p>
</section>
<section>
<marker id="match_spec"></marker>
<title>Match Specifications</title>
<p>Some of the functions use a <em>match specification</em>,
<c>match_spec</c>. For a brief explanation, see
<seealso marker="#select/2"><c>select/2</c></seealso>. For a detailed
description, see section <seealso marker="erts:match_spec">
Match Specifications in Erlang</seealso> in ERTS User's Guide.</p>
</section>
<datatypes>
<datatype>
<name name="access"/>
</datatype>
<datatype>
<name>continuation()</name>
<desc>
<p>Opaque continuation used by <seealso marker="#select/1">
<c>select/1,3</c></seealso>, <seealso marker="#select_reverse/1">
<c>select_reverse/1,3</c></seealso>, <seealso marker="#match/1">
<c>match/1,3</c></seealso>, and <seealso marker="#match_object/1">
<c>match_object/1,3</c></seealso>.</p>
</desc>
</datatype>
<datatype>
<name name="match_spec"/>
<desc><p>A match specification, see above.</p></desc>
</datatype>
<datatype>
<name name="comp_match_spec"/>
<desc><p>A compiled match specification.</p></desc>
</datatype>
<datatype>
<name name="match_pattern"/>
</datatype>
<datatype>
<name name="tab"/>
</datatype>
<datatype>
<name name="tid"/>
<desc><p>A table identifier, as returned by
<seealso marker="#new/2"><c>new/2</c></seealso>.</p></desc>
</datatype>
<datatype>
<name name="type"/>
</datatype>
</datatypes>
<funcs>
<func>
<name name="all" arity="0"/>
<fsummary>Return a list of all ETS tables.</fsummary>
<desc>
<p>Returns a list of all tables at the node. Named tables are
specified by their names, unnamed tables are specified by their
table identifiers.</p>
<p>There is no guarantee of consistency in the returned list. Tables
created or deleted by other processes "during" the <c>ets:all()</c>
call either are or are not included in the list. Only tables
created/deleted <em>before</em> <c>ets:all()</c> is called are
guaranteed to be included/excluded.</p>
</desc>
</func>
<func>
<name name="delete" arity="1"/>
<fsummary>Delete an entire ETS table.</fsummary>
<desc>
<p>Deletes the entire table <c><anno>Tab</anno></c>.</p>
</desc>
</func>
<func>
<name name="delete" arity="2"/>
<fsummary>Delete all objects with a specified key from an ETS
table.</fsummary>
<desc>
<p>Deletes all objects with key <c><anno>Key</anno></c> from table
<c><anno>Tab</anno></c>.</p>
</desc>
</func>
<func>
<name name="delete_all_objects" arity="1"/>
<fsummary>Delete all objects in an ETS table.</fsummary>
<desc>
<p>Delete all objects in the ETS table <c><anno>Tab</anno></c>.
The operation is guaranteed to be
<seealso marker="#concurrency">atomic and isolated</seealso>.</p>
</desc>
</func>
<func>
<name name="delete_object" arity="2"/>
<fsummary>Deletes a specific from an ETS table.</fsummary>
<desc>
<p>Delete the exact object <c><anno>Object</anno></c> from the
ETS table,
leaving objects with the same key but other differences
(useful for type <c>bag</c>). In a <c>duplicate_bag</c> table, all
instances of the object are deleted.</p>
</desc>
</func>
<func>
<name name="file2tab" arity="1"/>
<fsummary>Read an ETS table from a file.</fsummary>
<desc>
<p>Reads a file produced by <seealso marker="#tab2file/2">
<c>tab2file/2</c></seealso> or
<seealso marker="#tab2file/3"><c>tab2file/3</c></seealso> and
creates the corresponding table <c><anno>Tab</anno></c>.</p>
<p>Equivalent to <c>file2tab(<anno>Filename</anno>, [])</c>.</p>
</desc>
</func>
<func>
<name name="file2tab" arity="2"/>
<fsummary>Read an ETS table from a file.</fsummary>
<desc>
<p>Reads a file produced by <seealso marker="#tab2file/2">
<c>tab2file/2</c></seealso> or <seealso marker="#tab2file/3">
<c>tab2file/3</c></seealso> and creates the
corresponding table <c><anno>Tab</anno></c>.</p>
<p>The only supported option is <c>{verify,boolean()}</c>.
If verification is turned on (by specifying <c>{verify,true}</c>),
the function uses whatever information is present in the file to
assert that the information is not damaged. How this is done depends
on which <c>extended_info</c> was written using
<seealso marker="#tab2file/3"><c>tab2file/3</c></seealso>.</p>
<p>If no <c>extended_info</c> is present in the file and
<c>{verify,true}</c> is specified, the number of objects
written is compared to the size of the original table when the
dump was started. This can make verification fail if the table was
<c>public</c> and objects were added or removed while the
table was dumped to file. To avoid this problem,
either do not verify files dumped while updated simultaneously
or use option <c>{extended_info, [object_count]}</c> to
<seealso marker="#tab2file/3"><c>tab2file/3</c></seealso>, which
extends the information in the file with the number of objects
written.</p>
<p>If verification is turned on and the file was written with
option <c>{extended_info, [md5sum]}</c>, reading the file
is slower and consumes radically more CPU time than otherwise.</p>
<p><c>{verify,false}</c> is the default.</p>
</desc>
</func>
<func>
<name name="first" arity="1"/>
<fsummary>Return the first key in an ETS table.</fsummary>
<desc>
<p>Returns the first key <c><anno>Key</anno></c> in table
<c><anno>Tab</anno></c>. For an <c>ordered_set</c> table, the first
key in Erlang term order is returned. For other
table types, the first key according to the internal
order of the table is returned. If the table is empty,
<c>'$end_of_table'</c> is returned.</p>
<p>To find subsequent keys in the table, use
<seealso marker="#next/2"><c>next/2</c></seealso>.</p>
</desc>
</func>
<func>
<name name="foldl" arity="3"/>
<fsummary>Fold a function over an ETS table.</fsummary>
<desc>
<p><c><anno>Acc0</anno></c> is returned if the table is empty.
This function is similar to
<seealso marker="lists#foldl/3"><c>lists:foldl/3</c></seealso>.
The table elements are traversed is unspecified order, except for
<c>ordered_set</c> tables, where they are traversed first to last.</p>
<p>If <c><anno>Function</anno></c> inserts objects into the table,
or another
process inserts objects into the table, those objects <em>can</em>
(depending on key ordering) be included in the traversal.</p>
</desc>
</func>
<func>
<name name="foldr" arity="3"/>
<fsummary>Fold a function over an ETS table.</fsummary>
<desc>
<p><c><anno>Acc0</anno></c> is returned if the table is empty.
This function is similar to
<seealso marker="lists#foldr/3"><c>lists:foldr/3</c></seealso>.
The table elements are traversed is unspecified order, except for
<c>ordered_set</c> tables, where they are traversed last to first.</p>
<p>If <c><anno>Function</anno></c> inserts objects into the table,
or another
process inserts objects into the table, those objects <em>can</em>
(depending on key ordering) be included in the traversal.</p>
</desc>
</func>
<func>
<name name="from_dets" arity="2"/>
<fsummary>Fill an ETS table with objects from a Dets
table.</fsummary>
<desc>
<p>Fills an already created ETS table with the objects in the
already opened Dets table <c><anno>DetsTab</anno></c>.
Existing objects in the ETS table are kept unless
overwritten.</p>
<p>If any of the tables does not exist or the Dets table is
not open, a <c>badarg</c> exception is raised.</p>
</desc>
</func>
<func>
<name name="fun2ms" arity="1"/>
<fsummary>Pseudo function that transforms fun syntax to a match
specification.</fsummary>
<desc>
<p>Pseudo function that by a <c>parse_transform</c> translates
<c><anno>LiteralFun</anno></c> typed as parameter in the function
call to a
<seealso marker="#match_spec">match specification</seealso>.
With "literal" is meant that the fun must textually be written
as the parameter of the function, it cannot be held in a
variable that in turn is passed to the function.</p>
<p>The parse transform is provided in the <c>ms_transform</c>
module and the source <em>must</em> include
file <c>ms_transform.hrl</c> in STDLIB for this
pseudo function to work. Failing to include the hrl file in
the source results in a runtime error, not a compile
time error. The include file is easiest included by adding line
<c>-include_lib("stdlib/include/ms_transform.hrl").</c> to
the source file.</p>
<p>The fun is very restricted, it can take only a single
parameter (the object to match): a sole variable or a
tuple. It must use the <c>is_</c> guard tests.
Language constructs that have no representation in a match
specification (<c>if</c>, <c>case</c>, <c>receive</c>,
and so on) are not allowed.</p>
<p>The return value is the resulting match specification.</p>
<p><em>Example:</em></p>
<pre>
1> <input>ets:fun2ms(fun({M,N}) when N > 3 -> M end).</input>
[{{'$1','$2'},[{'>','$2',3}],['$1']}]</pre>
<p>Variables from the environment can be imported, so that the
following works:</p>
<pre>
2> <input>X=3.</input>
3
3> <input>ets:fun2ms(fun({M,N}) when N > X -> M end).</input>
[{{'$1','$2'},[{'>','$2',{const,3}}],['$1']}]</pre>
<p>The imported variables are replaced by match specification
<c>const</c> expressions, which is consistent with the
static scoping for Erlang funs. However, local or global function
calls cannot be in the guard or body of the fun. Calls to built-in
match specification functions is of course allowed:</p>
<pre>
4> <input>ets:fun2ms(fun({M,N}) when N > X, is_atomm(M) -> M end).</input>
Error: fun containing local Erlang function calls
('is_atomm' called in guard) cannot be translated into match_spec
{error,transform_error}
5> <input>ets:fun2ms(fun({M,N}) when N > X, is_atom(M) -> M end).</input>
[{{'$1','$2'},[{'>','$2',{const,3}},{is_atom,'$1'}],['$1']}]</pre>
<p>As shown by the example, the function can be called
from the shell also. The fun must be literally in the call
when used from the shell as well.</p>
<warning>
<p>If the <c>parse_transform</c> is not applied to a module that
calls this pseudo function, the call fails in runtime
(with a <c>badarg</c>). The <c>ets</c> module
exports a function with this name, but it is never to
be called except when using the function in the
shell. If the <c>parse_transform</c> is properly applied by
including header file <c>ms_transform.hrl</c>, compiled
code never calls the function, but the function call is
replaced by a literal match specification.</p>
</warning>
<p>For more information, see <seealso marker="ms_transform#top">
<c>ms_transform(3)</c></seealso>.</p>
</desc>
</func>
<func>
<name name="give_away" arity="3"/>
<fsummary>Change owner of a table.</fsummary>
<desc>
<p>Make process <c><anno>Pid</anno></c> the new owner of table
<c><anno>Tab</anno></c>. If successful, message
<c>{'ETS-TRANSFER',<anno>Tab</anno>,FromPid,<anno>GiftData</anno>}</c>
is sent to the new owner.</p>
<p>The process <c><anno>Pid</anno></c> must be alive, local, and not
already the owner of the table.
The calling process must be the table owner.</p>
<p>Notice that this function does not affect option
<seealso marker="#heir"><c>heir</c></seealso> of the table. A table
owner can, for example, set <c>heir</c> to itself, give the table
away, and then get it back if the receiver terminates.</p>
</desc>
</func>
<func>
<name name="i" arity="0"/>
<fsummary>Display information about all ETS tables on a terminal.
</fsummary>
<desc>
<p>Displays information about all ETS tables on a terminal.</p>
</desc>
</func>
<func>
<name name="i" arity="1"/>
<fsummary>Browse an ETS table on a terminal.</fsummary>
<desc>
<p>Browses table <c><anno>Tab</anno></c> on a terminal.</p>
</desc>
</func>
<func>
<name name="info" arity="1"/>
<fsummary>Return information about an <c>table</c>.</fsummary>
<desc>
<p>Returns information about table <c><anno>Tab</anno></c> as a list of
tuples. If <c><anno>Tab</anno></c> has the correct type
for a table identifier, but does not refer to an existing ETS
table, <c>undefined</c> is returned. If <c><anno>Tab</anno></c> is
not of the correct type, a <c>badarg</c> exception is raised.</p>
<taglist>
<tag><c>{compressed, boolean()}</c></tag>
<item>
<p>Indicates if the table is compressed.</p>
</item>
<tag><c>{heir, pid() | none}</c></tag>
<item>
<p>The pid of the heir of the table, or <c>none</c> if no heir
is set.</p>
</item>
<tag><c>{keypos, integer() >= 1}</c></tag>
<item>
<p>The key position.</p>
</item>
<tag><c>{memory, integer() >= 0</c></tag>
<item>
<p>The number of words allocated to the table.</p>
</item>
<tag><c>{name, atom()}</c></tag>
<item>
<p>The table name.</p>
</item>
<tag><c>{named_table, boolean()}</c></tag>
<item>
<p>Indicates if the table is named.</p>
</item>
<tag><c>{node, node()}</c></tag>
<item>
<p>The node where the table is stored. This field is no longer
meaningful, as tables cannot be accessed from other nodes.</p>
</item>
<tag><c>{owner, pid()}</c></tag>
<item>
<p>The pid of the owner of the table.</p>
</item>
<tag><c>{protection,</c> <seealso marker="#type-access">
<c>access()</c></seealso><c>}</c></tag>
<item>
<p>The table access rights.</p>
</item>
<tag><c>{size, integer() >= 0</c></tag>
<item>
<p>The number of objects inserted in the table.</p>
</item>
<tag><c>{type,</c> <seealso marker="#type-type">
<c>type()</c></seealso><c>}</c></tag>
<item>
<p>The table type.</p>
</item>
<tag><c>{read_concurrency, boolean()}</c></tag>
<item>
<p>Indicates whether the table uses <c>read_concurrency</c> or
not.</p>
</item>
<tag><c>{write_concurrency, boolean()}</c></tag>
<item>
<p>Indicates whether the table uses <c>write_concurrency</c>.</p>
</item>
</taglist>
</desc>
</func>
<func>
<name name="info" arity="2"/>
<fsummary>Return the information associated with the specified item for
an ETS table.</fsummary>
<desc>
<p>Returns the information associated with <c>Item</c> for table
<c><anno>Tab</anno></c>, or returns <c>undefined</c> if <c>Tab</c>
does not refer an existing ETS table. If
<c><anno>Tab</anno></c> is
not of the correct type, or if <c><anno>Item</anno></c> is not
one of the allowed values, a <c>badarg</c> exception is raised.</p>
<p>In addition to the <c>{<anno>Item</anno>,<anno>Value</anno>}</c>
pairs defined for <seealso marker="#info/1"><c>info/1</c></seealso>,
the following items are allowed:</p>
<list type="bulleted">
<item>
<p><c>Item=fixed, Value=boolean()</c></p>
<p>Indicates if the table is fixed by any process.</p>
</item>
<item>
<p><marker id="info_2_safe_fixed_monotonic_time"/></p>
<p><c>Item=safe_fixed|safe_fixed_monotonic_time,
Value={FixationTime,Info}|false</c></p>
<p>If the table has been fixed using
<seealso marker="#safe_fixtable/2">
<c>safe_fixtable/2</c></seealso>,
the call returns a tuple where <c>FixationTime</c> is the
time when the table was first fixed by a process, which either
is or is not one of the processes it is fixed by now.</p>
<p>The format and value of <c>FixationTime</c> depends on
<c>Item</c>:</p>
<taglist>
<tag><c>safe_fixed</c></tag>
<item>
<p><c>FixationTime</c> corresponds to the result returned by
<seealso marker="erts:erlang#timestamp/0">
<c>erlang:timestamp/0</c></seealso> at the time of fixation.
Notice that when the system uses single or multi
<seealso marker="erts:time_correction#Time_Warp_Modes">time
warp modes</seealso> this can produce strange results, as
the use of <c>safe_fixed</c> is not
<seealso marker="erts:time_correction#Time_Warp_Safe_Code">
time warp safe</seealso>. Time warp safe code must use
<c>safe_fixed_monotonic_time</c> instead.</p>
</item>
<tag><c>safe_fixed_monotonic_time</c></tag>
<item>
<p><c>FixationTime</c> corresponds to the result returned by
<seealso marker="erts:erlang#monotonic_time/0">
<c>erlang:monotonic_time/0</c></seealso> at the time of
fixation. The use of <c>safe_fixed_monotonic_time</c> is
<seealso marker="erts:time_correction#Time_Warp_Safe_Code">
time warp safe</seealso>.</p>
</item>
</taglist>
<p><c>Info</c> is a possibly empty lists of tuples
<c>{Pid,RefCount}</c>, one tuple for every process the
table is fixed by now. <c>RefCount</c> is the value
of the reference counter and it keeps track of how many times
the table has been fixed by the process.</p>
<p>If the table never has been fixed, the call returns
<c>false</c>.</p>
</item>
<item>
<p><c>Item=stats, Value=tuple()</c></p>
<p>Returns internal statistics about <c>set</c>, <c>bag</c>, and
<c>duplicate_bag</c> tables on an internal format used by OTP
test suites. Not for production use.</p></item>
</list>
</desc>
</func>
<func>
<name name="init_table" arity="2"/>
<fsummary>Replace all objects of an ETS table.</fsummary>
<desc>
<p>Replaces the existing objects of table <c><anno>Tab</anno></c> with
objects created by calling the input function
<c><anno>InitFun</anno></c>,
see below. This function is provided for compatibility with
the <c>dets</c> module, it is not more efficient than filling
a table by using
<seealso marker="#insert/2"><c>insert/2</c></seealso>.</p>
<p>When called with argument <c>read</c>, the function
<c><anno>InitFun</anno></c> is assumed to return
<c>end_of_input</c> when
there is no more input, or <c>{<anno>Objects</anno>, Fun}</c>, where
<c><anno>Objects</anno></c> is a list of objects and <c>Fun</c> is a
new input function. Any other value <c>Value</c> is returned as an
error <c>{error, {init_fun, Value}}</c>. Each input function is
called exactly once, and if an error occur, the last
function is called with argument <c>close</c>, the reply
of which is ignored.</p>
<p>If the table type is <c>set</c> and more than one object
exists with a given key, one of the objects is
chosen. This is not necessarily the last object with the given
key in the sequence of objects returned by the input
functions. This holds also for duplicated
objects stored in tables of type <c>bag</c>.</p>
</desc>
</func>
<func>
<name name="insert" arity="2"/>
<fsummary>Insert an object into an ETS table.</fsummary>
<desc>
<p>Inserts the object or all of the objects in list
<c><anno>ObjectOrObjects</anno></c> into table
<c><anno>Tab</anno></c>.</p>
<list type="bulleted">
<item>
<p>If the table type is <c>set</c> and the key of the inserted
objects <em>matches</em> the key of any object in the table,
the old object is replaced.</p>
</item>
<item>
<p>If the table type is <c>ordered_set</c> and the key of the
inserted object <em>compares equal</em> to the key of any object
in the table, the old object is replaced.</p>
</item>
<item>
<p>If the list contains more than one object with
<em>matching</em> keys and the table type is <c>set</c>, one is
inserted, which one is not defined.
The same holds for table type <c>ordered_set</c>
if the keys <em>compare equal</em>.</p>
</item>
</list>
<p>The entire operation is guaranteed to be
<seealso marker="#concurrency">atomic and isolated</seealso>,
even when a list of objects is inserted.</p>
</desc>
</func>
<func>
<name name="insert_new" arity="2"/>
<fsummary>Insert an object into an ETS table if the key is not
already present.</fsummary>
<desc>
<p>Same as <seealso marker="#insert/2"><c>insert/2</c></seealso>
except that instead of overwriting objects with the same key
(for <c>set</c> or <c>ordered_set</c>) or adding more objects with
keys already existing in the table (for <c>bag</c> and
<c>duplicate_bag</c>), <c>false</c> is returned.</p>
<p>If <c><anno>ObjectOrObjects</anno></c> is a
list, the function checks <em>every</em> key before
inserting anything. Nothing is inserted unless
<em>all</em> keys present in the list are absent from the
table. Like <c>insert/2</c>, the entire operation is guaranteed to be
<seealso marker="#concurrency">atomic and isolated</seealso>.</p>
</desc>
</func>
<func>
<name name="is_compiled_ms" arity="1"/>
<fsummary>Check if an Erlang term is the result of
<c>match_spec_compile</c>.</fsummary>
<desc>
<p>Checks if a term is a valid
compiled <seealso marker="#match_spec">match specification</seealso>.
The compiled match specification is an opaque datatype that
<em>cannot</em> be sent between Erlang nodes or be stored on
disk. Any attempt to create an external representation of a
compiled match specification results in an empty binary
(<c><![CDATA[<<>>]]></c>).</p>
<p><em>Examples:</em></p>
<p>The following expression yields <c>true</c>::</p>
<code type="none">
ets:is_compiled_ms(ets:match_spec_compile([{'_',[],[true]}])).</code>
<p>The following expressions yield <c>false</c>, as variable
<c>Broken</c> contains a compiled match specification that has
passed through external representation:</p>
<code type="none">
MS = ets:match_spec_compile([{'_',[],[true]}]),
Broken = binary_to_term(term_to_binary(MS)),
ets:is_compiled_ms(Broken).</code>
<note>
<p>The reason for not having an external representation of
compiled match specifications is performance. It can be
subject to change in future releases, while this interface
remains for backward compatibility.</p>
</note>
</desc>
</func>
<func>
<name name="last" arity="1"/>
<fsummary>Return the last key in an ETS table of type
<c>ordered_set</c>.</fsummary>
<desc>
<p>Returns the last key <c><anno>Key</anno></c> according to Erlang
term order in table <c>Tab</c> of type <c>ordered_set</c>. For
other table types, the function is synonymous to
<seealso marker="#first/1"><c>first/1</c></seealso>.
If the table is empty, <c>'$end_of_table'</c> is returned.</p>
<p>To find preceding keys in the table, use
<seealso marker="#prev/2"><c>prev/2</c></seealso>.</p>
</desc>
</func>
<func>
<name name="lookup" arity="2"/>
<fsummary>Return all objects with a specified key in an ETS table.
</fsummary>
<desc>
<p>Returns a list of all objects with key <c><anno>Key</anno></c> in
table <c><anno>Tab</anno></c>.</p>
<list type="bulleted">
<item>
<p>For tables of type <c>set</c>, <c>bag</c>, or
<c>duplicate_bag</c>, an object is returned only if the specified
key <em>matches</em> the key of the object in the table.</p>
</item>
<item>
<p>For tables of type <c>ordered_set</c>, an object is returned if
the specified key <em>compares equal</em> to the key of an object
in the table.</p>
</item>
</list>
<p>The difference is the same as between <c>=:=</c> and <c>==</c>.</p>
<p>As an example, one can insert an object with
<c>integer()</c> <c>1</c> as a key in an <c>ordered_set</c>
and get the object returned as a result of doing a <c>lookup/2</c>
with <c>float()</c> <c>1.0</c> as the key to search for.</p>
<p>For tables of type <c>set</c> or <c>ordered_set</c>,
the function returns either the empty list or a list with one
element, as there cannot be more than one object with the same
key. For tables of type <c>bag</c> or <c>duplicate_bag</c>, the
function returns a list of arbitrary length.</p>
<p>Notice that the time order of object insertions is preserved;
the first object inserted with the specified key is the first
in the resulting list, and so on.</p>
<p>Insert and lookup times in tables of type <c>set</c>,
<c>bag</c>, and <c>duplicate_bag</c> are constant, regardless
of the table size. For the <c>ordered_set</c>
datatype, time is proportional to the (binary) logarithm of
the number of objects.</p>
</desc>
</func>
<func>
<name name="lookup_element" arity="3"/>
<fsummary>Return the <c>Pos</c>:th element of all objects with a
specified key in an ETS table.</fsummary>
<desc>
<p>For a table <c><anno>Tab</anno></c> of type <c>set</c> or
<c>ordered_set</c>, the function returns the
<c><anno>Pos</anno></c>:th
element of the object with key <c><anno>Key</anno></c>.</p>
<p>For tables of type <c>bag</c> or <c>duplicate_bag</c>,
the functions returns a list with the <c><anno>Pos</anno></c>:th
element of every object with key <c><anno>Key</anno></c>.</p>
<p>If no object with key <c><anno>Key</anno></c> exists, the
function exits with reason <c>badarg</c>.</p>
<p>The difference between <c>set</c>, <c>bag</c>, and
<c>duplicate_bag</c> on one hand, and <c>ordered_set</c> on
the other, regarding the fact that <c>ordered_set</c>
view keys as equal when they <em>compare equal</em>
whereas the other table types regard them equal only when
they <em>match</em>, holds for <c>lookup_element/3</c>.</p>
</desc>
</func>
<func>
<name name="match" arity="1"/>
<fsummary>Continues matching objects in an ETS table.</fsummary>
<desc>
<p>Continues a match started with
<seealso marker="#match/3"><c>match/3</c></seealso>. The next
chunk of the size specified in the initial <c>match/3</c>
call is returned together with a new <c><anno>Continuation</anno></c>,
which can be used in subsequent calls to this function.</p>
<p>When there are no more objects in the table, <c>'$end_of_table'</c>
is returned.</p>
</desc>
</func>
<func>
<name name="match" arity="2"/>
<fsummary>Match the objects in an ETS table against a pattern.
</fsummary>
<desc>
<p>Matches the objects in table <c><anno>Tab</anno></c> against
pattern <c><anno>Pattern</anno></c>.</p>
<p>A pattern is a term that can contain:</p>
<list type="bulleted">
<item>Bound parts (Erlang terms)</item>
<item><c>'_'</c> that matches any Erlang term</item>
<item>Pattern variables <c>'$N'</c>, where <c>N</c>=0,1,...</item>
</list>
<p>The function returns a list with one element for each
matching object, where each element is an ordered list of
pattern variable bindings, for example:</p>
<pre>
6> <input>ets:match(T, '$1').</input> % Matches every object in table
[[{rufsen,dog,7}],[{brunte,horse,5}],[{ludde,dog,5}]]
7> <input>ets:match(T, {'_',dog,'$1'}).</input>
[[7],[5]]
8> <input>ets:match(T, {'_',cow,'$1'}).</input>
[]</pre>
<p>If the key is specified in the pattern, the match is very
efficient. If the key is not specified, that is, if it is a
variable or an underscore, the entire table must be searched.
The search time can be substantial if the table is very large.</p>
<p>For tables of type <c>ordered_set</c>, the result is in
the same order as in a <c>first</c>/<c>next</c> traversal.</p>
</desc>
</func>
<func>
<name name="match" arity="3"/>
<fsummary>Match the objects in an ETS table against a pattern
and return part of the answers.</fsummary>
<desc>
<p>Works like <seealso marker="#match/2"><c>match/2</c></seealso>,
but returns only a limited (<c><anno>Limit</anno></c>) number of
matching objects. Term <c><anno>Continuation</anno></c> can then
be used in subsequent calls to <seealso marker="#match/1">
<c>match/1</c></seealso> to get the next chunk of matching
objects. This is a space-efficient way to work on objects in a
table, which is faster than traversing the table object
by object using
<seealso marker="#first/1"><c>first/1</c></seealso> and
<seealso marker="#next/2"><c>next/2</c></seealso>.</p>
<p>If the table is empty, <c>'$end_of_table'</c> is returned.</p>
</desc>
</func>
<func>
<name name="match_delete" arity="2"/>
<fsummary>Delete all objects that match a specified pattern from an
ETS table.</fsummary>
<desc>
<p>Deletes all objects that match pattern <c><anno>Pattern</anno></c>
from table <c><anno>Tab</anno></c>. For a description of patterns,
see <seealso marker="#match/2"><c>match/2</c></seealso>.</p>
</desc>
</func>
<func>
<name name="match_object" arity="1"/>
<fsummary>Continues matching objects in an ETS table.</fsummary>
<desc>
<p>Continues a match started with
<seealso marker="#match_object/3"><c>match_object/3</c></seealso>.
The next chunk of the size specified in the initial
<c>match_object/3</c> call is returned together with a new
<c><anno>Continuation</anno></c>, which can be used in subsequent
calls to this function.</p>
<p>When there are no more objects in the table, <c>'$end_of_table'</c>
is returned.</p>
</desc>
</func>
<func>
<name name="match_object" arity="2"/>
<fsummary>Match the objects in an ETS table against a pattern.
</fsummary>
<desc>
<p>Matches the objects in table <c><anno>Tab</anno></c> against
pattern <c><anno>Pattern</anno></c>. For a description of patterns,
see <seealso marker="#match/2"><c>match/2</c></seealso>.
The function returns a list of all objects that
match the pattern.</p>
<p>If the key is specified in the pattern, the match is very
efficient. If the key is not specified, that is, if it is a
variable or an underscore, the entire table must be searched.
The search time can be substantial if the table is very large.</p>
<p>For tables of type <c>ordered_set</c>, the result is in
the same order as in a <c>first</c>/<c>next</c> traversal.</p>
</desc>
</func>
<func>
<name name="match_object" arity="3"/>
<fsummary>Match the objects in an ETS table against a pattern and
return part of the answers.</fsummary>
<desc>
<p>Works like <seealso marker="#match_object/2">
<c>match_object/2</c></seealso>, but only returns a
limited (<c><anno>Limit</anno></c>) number of matching objects. Term
<c><anno>Continuation</anno></c> can then be used in subsequent
calls to <seealso marker="#match_object/1">
<c>match_object/1</c></seealso> to get the next chunk of matching
objects. This is a space-efficient way to work on objects in a
table, which is faster than traversing the table object
by object using
<seealso marker="#first/1"><c>first/1</c></seealso> and
<seealso marker="#next/2"><c>next/2</c></seealso>.</p>
<p>If the table is empty, <c>'$end_of_table'</c> is returned.</p>
</desc>
</func>
<func>
<name name="match_spec_compile" arity="1"/>
<fsummary>Compile a match specification into its internal representation.
</fsummary>
<desc>
<p>Transforms a
<seealso marker="#match_spec">match specification</seealso> into an
internal representation that can be used in subsequent calls to
<seealso marker="#match_spec_run/2"><c>match_spec_run/2</c></seealso>.
The internal representation is
opaque and cannot be converted to external term format and
then back again without losing its properties (that is, it cannot
be sent to a process on another node and still remain a
valid compiled match specification, nor can it be stored on disk).
To check the validity of a compiled match specification, use
<seealso marker="#is_compiled_ms/1"><c>is_compiled_ms/1</c></seealso>.
</p>
<p>If term <c><anno>MatchSpec</anno></c> cannot be compiled (does not
represent a valid match specification), a <c>badarg</c> exception is
raised.</p>
<note>
<p>This function has limited use in normal code. It is used by the
<seealso marker="dets"><c>dets</c></seealso> module
to perform the <c>dets:select()</c> operations.</p>
</note>
</desc>
</func>
<func>
<name name="match_spec_run" arity="2"/>
<fsummary>Perform matching, using a compiled match specification on a
list of tuples.</fsummary>
<desc>
<p>Executes the matching specified in a compiled
<seealso marker="#match_spec">match specification</seealso> on a list
of tuples. Term <c><anno>CompiledMatchSpec</anno></c> is to be
the result of a call to <seealso marker="#match_spec_compile/1">
<c>match_spec_compile/1</c></seealso> and is hence the internal
representation of the match specification one wants to use.</p>
<p>The matching is executed on each element in <c><anno>List</anno></c>
and the function returns a list containing all results. If an element
in <c><anno>List</anno></c> does not match, nothing is returned
for that element. The length of the result list is therefore
equal or less than the length of parameter <c><anno>List</anno></c>.
</p>
<p><em>Example:</em></p>
<p>The following two calls give the same result (but certainly not the
same execution time):</p>
<code type="none">
Table = ets:new...
MatchSpec = ...
% The following call...
ets:match_spec_run(ets:tab2list(Table),
ets:match_spec_compile(MatchSpec)),
% ...gives the same result as the more common (and more efficient)
ets:select(Table, MatchSpec),</code>
<note>
<p>This function has limited use in normal code. It is used by the
<seealso marker="dets"><c>dets</c></seealso> module
to perform the <c>dets:select()</c> operations and by
Mnesia during transactions.</p>
</note>
</desc>
</func>
<func>
<name name="member" arity="2"/>
<fsummary>Tests for occurrence of a key in an ETS table.</fsummary>
<desc>
<p>Works like <seealso marker="#lookup/2"><c>lookup/2</c></seealso>,
but does not return the objects. Returns <c>true</c> if one or more
elements in the table has key <c><anno>Key</anno></c>, otherwise
<c>false</c>.</p>
</desc>
</func>
<func>
<name name="new" arity="2"/>
<fsummary>Create a new ETS table.</fsummary>
<desc>
<p>Creates a new table and returns a table identifier that can
be used in subsequent operations. The table identifier can be
sent to other processes so that a table can be shared between
different processes within a node.</p>
<p>Parameter <c><anno>Options</anno></c> is a list of atoms that
specifies table type, access rights, key position, and whether the
table is named. Default values are used for omitted options.
This means that not specifying any options (<c>[]</c>) is the same
as specifying <c>[set, protected, {keypos,1}, {heir,none},
{write_concurrency,false}, {read_concurrency,false}]</c>.</p>
<taglist>
<tag><c>set</c></tag>
<item>
<p>The table is a <c>set</c> table: one key, one object,
no order among objects. This is the default table type.</p>
</item>
<tag><c>ordered_set</c></tag>
<item>
<p>The table is a <c>ordered_set</c> table: one key, one
object, ordered in Erlang term order, which is the order
implied by the < and > operators. Tables of this type
have a somewhat different behavior in some situations
than tables of other types. Most notably, the
<c>ordered_set</c> tables regard keys as equal when they
<em>compare equal</em>, not only when they match. This
means that to an <c>ordered_set</c> table, <c>integer()</c>
<c>1</c> and <c>float()</c> <c>1.0</c> are regarded as equal.
This also means that the
key used to lookup an element not necessarily
<em>matches</em> the key in the returned elements, if
<c>float()</c>'s and <c>integer()</c>'s are mixed in
keys of a table.</p>
</item>
<tag><c>bag</c></tag>
<item>
<p>The table is a <c>bag</c> table, which can have many
objects, but only one instance of each object, per key.</p>
</item>
<tag><c>duplicate_bag</c></tag>
<item>
<p>The table is a <c>duplicate_bag</c> table, which can have
many objects, including multiple copies of the same
object, per key.</p>
</item>
<tag><c>public</c></tag>
<item>
<p>Any process can read or write to the table.</p>
<marker id="protected"></marker>
</item>
<tag><c>protected</c></tag>
<item>
<p>The owner process can read and write to the table. Other
processes can only read the table. This is the default
setting for the access rights.</p>
<marker id="private"></marker>
</item>
<tag><c>private</c></tag>
<item>
<p>Only the owner process can read or write to the table.</p>
</item>
<tag><c>named_table</c></tag>
<item>
<p>If this option is present, name <c><anno>Name</anno></c> is
associated with the table identifier. The name can then
be used instead of the table identifier in subsequent
operations.</p>
</item>
<tag><c>{keypos,<anno>Pos</anno>}</c></tag>
<item>
<p>Specifies which element in the stored tuples to use
as key. By default, it is the first element, that is,
<c><anno>Pos</anno>=1</c>. However, this is not always
appropriate. In
particular, we do not want the first element to be the
key if we want to store Erlang records in a table.</p>
<p>Notice that any tuple stored in the table must have at
least <c><anno>Pos</anno></c> number of elements.</p>
<marker id="heir"></marker>
</item>
<tag><c>{heir,<anno>Pid</anno>,<anno>HeirData</anno>} |
{heir,none}</c></tag>
<item>
<p>Set a process as heir. The heir inherits the table if
the owner terminates. Message
<c>{'ETS-TRANSFER',tid(),FromPid,<anno>HeirData</anno>}</c> is
sent to the heir when that occurs. The heir must be a local
process. Default heir is <c>none</c>, which destroys the table
when the owner terminates.</p>
<marker id="new_2_write_concurrency"></marker>
</item>
<tag><c>{write_concurrency,boolean()}</c></tag>
<item>
<p>Performance tuning. Defaults to <c>false</c>, in which case an
operation that
mutates (writes to) the table obtains exclusive access,
blocking any concurrent access of the same table until finished.
If set to <c>true</c>, the table is optimized to concurrent
write access. Different objects of the same table can be mutated
(and read) by concurrent processes. This is achieved to some
degree at the expense of memory consumption and the performance
of sequential access and concurrent reading.</p>
<p>Option <c>write_concurrency</c> can be combined with option
<seealso marker="#new_2_read_concurrency">
<c>read_concurrency</c></seealso>. You typically want to combine
these when large concurrent read bursts and large concurrent
write bursts are common; for more information, see option
<seealso marker="#new_2_read_concurrency">
<c>read_concurrency</c></seealso>.</p>
<p>Notice that this option does not change any guarantees about
<seealso marker="#concurrency">atomicity and isolation</seealso>.
Functions that makes such promises over many objects (like
<seealso marker="#insert/2"><c>insert/2</c></seealso>)
gain less (or nothing) from this option.</p>
<p>Table type <c>ordered_set</c> is not affected by this option.
Also, the memory consumption inflicted by
both <c>write_concurrency</c> and <c>read_concurrency</c> is a
constant overhead per table. This overhead can be especially
large when both options are combined.</p>
<marker id="new_2_read_concurrency"></marker>
</item>
<tag><c>{read_concurrency,boolean()}</c></tag>
<item>
<p>Performance tuning. Defaults to <c>false</c>. When set to
<c>true</c>, the table is optimized for concurrent read
operations. When this option is enabled on a runtime system with
SMP support, read operations become much cheaper; especially on
systems with multiple physical processors. However, switching
between read and write operations becomes more expensive.</p>
<p>You typically want to enable this option when concurrent read
operations are much more frequent than write operations, or when
concurrent reads and writes comes in large read and write bursts
(that is, many reads not interrupted by writes, and many
writes not interrupted by reads).</p>
<p>You typically do
<em>not</em> want to enable this option when the common access
pattern is a few read operations interleaved with a few write
operations repeatedly. In this case, you would get a performance
degradation by enabling this option.</p>
<p>Option <c>read_concurrency</c> can be combined with option
<seealso marker="#new_2_write_concurrency">
<c>write_concurrency</c></seealso>.
You typically want to combine these when large concurrent
read bursts and large concurrent write bursts are common.</p>
<marker id="new_2_compressed"></marker>
</item>
<tag><c>compressed</c></tag>
<item>
<p>If this option is present, the table data is stored in a more
compact format to consume less memory. However, it will make
table operations slower. Especially operations that need to
inspect entire objects, such as <c>match</c> and <c>select</c>,
get much slower. The key element is not compressed.</p>
</item>
</taglist>
</desc>
</func>
<func>
<name name="next" arity="2"/>
<fsummary>Return the next key in an ETS table.</fsummary>
<desc>
<p>Returns the next key <c><anno>Key2</anno></c>, following key
<c><anno>Key1</anno></c> in table <c><anno>Tab</anno></c>. For table
type <c>ordered_set</c>, the next key in Erlang term order is
returned. For other table types, the next key
according to the internal order of the table is returned. If no
next key exists, <c>'$end_of_table'</c> is returned.</p>
<p>To find the first key in the table, use
<seealso marker="#first/1"><c>first/1</c></seealso>.</p>
<p>Unless a table of type <c>set</c>, <c>bag</c>, or
<c>duplicate_bag</c> is protected using
<seealso marker="#safe_fixtable/2"><c>safe_fixtable/2</c></seealso>,
a traversal can fail if
concurrent updates are made to the table. For table
type <c>ordered_set</c>, the function returns the next key in
order, even if the object does no longer exist.</p>
</desc>
</func>
<func>
<name name="prev" arity="2"/>
<fsummary>Return the previous key in an ETS table of type
<c>ordered_set</c>.</fsummary>
<desc>
<p>Returns the previous key <c><anno>Key2</anno></c>, preceding key
<c><anno>Key1</anno></c> according to Erlang term order in table
<c><anno>Tab</anno></c> of type <c>ordered_set</c>. For other
table types, the function is synonymous to
<seealso marker="#next/2"><c>next/2</c></seealso>.
If no previous key exists, <c>'$end_of_table'</c> is returned.</p>
<p>To find the last key in the table, use
<seealso marker="#last/1"><c>last/1</c></seealso>.</p>
</desc>
</func>
<func>
<name name="rename" arity="2"/>
<fsummary>Rename a named ETS table.</fsummary>
<desc>
<p>Renames the named table <c><anno>Tab</anno></c> to the new name
<c><anno>Name</anno></c>. Afterwards, the old name cannot be used to
access the table. Renaming an unnamed table has no effect.</p>
</desc>
</func>
<func>
<name name="repair_continuation" arity="2"/>
<fsummary>Repair a continuation from <c>ets:select/1 or ets:select/3</c>
that has passed through external representation.</fsummary>
<desc>
<p>Restores an opaque continuation returned by
<seealso marker="#select/3"><c>select/3</c></seealso> or
<seealso marker="#select/1"><c>select/1</c></seealso> if the
continuation has passed through external term format (been
sent between nodes or stored on disk).</p>
<p>The reason for this function is that continuation terms
contain compiled match specifications and therefore are
invalidated if converted to external term format. Given that the
original match specification is kept intact, the continuation can
be restored, meaning it can once again be used in subsequent
<c>select/1</c> calls even though it has been stored on
disk or on another node.</p>
<p><em>Examples:</em></p>
<p>The following sequence of calls fails:</p>
<code type="none">
T=ets:new(x,[]),
...
{_,C} = ets:select(T,ets:fun2ms(fun({N,_}=A)
when (N rem 10) =:= 0 ->
A
end),10),
Broken = binary_to_term(term_to_binary(C)),
ets:select(Broken).</code>
<p>The following sequence works, as the call to
<c>repair_continuation/2</c> reestablishes the (deliberately)
invalidated continuation <c>Broken</c>.</p>
<code type="none">
T=ets:new(x,[]),
...
MS = ets:fun2ms(fun({N,_}=A)
when (N rem 10) =:= 0 ->
A
end),
{_,C} = ets:select(T,MS,10),
Broken = binary_to_term(term_to_binary(C)),
ets:select(ets:repair_continuation(Broken,MS)).</code>
<note>
<p>This function is rarely needed in application code. It is used
by Mnesia to provide distributed <c>select/3</c>
and <c>select/1</c> sequences. A normal application would
either use Mnesia or keep the continuation from being
converted to external format.</p>
<p>The reason for not having an external representation of a
compiled match specification is performance. It can be subject to
change in future releases, while this interface remains
for backward compatibility.</p>
</note>
</desc>
</func>
<func>
<name name="safe_fixtable" arity="2"/>
<fsummary>Fix an ETS table for safe traversal.</fsummary>
<desc>
<p>Fixes a table of type <c>set</c>, <c>bag</c>, or
<c>duplicate_bag</c> for safe traversal.</p>
<p>A process fixes a table by calling
<c>safe_fixtable(<anno>Tab</anno>, true)</c>. The table remains
fixed until the process releases it by calling
<c>safe_fixtable(<anno>Tab</anno>, false)</c>, or until the process
terminates.</p>
<p>If many processes fix a table, the table remains fixed
until all processes have released it (or terminated).
A reference counter is kept on a per process basis, and N
consecutive fixes requires N releases to release the table.</p>
<p>When a table is fixed, a sequence of
<seealso marker="#first/1"><c>first/1</c></seealso> and
<seealso marker="#next/2"><c>next/2</c></seealso> calls are
guaranteed to succeed, and each object in
the table is returned only once, even if objects
are removed or inserted during the traversal. The keys for new
objects inserted during the traversal <em>can</em> be returned by
<c>next/2</c> (it depends on the internal ordering of the keys).</p>
<p><em>Example:</em></p>
<code type="none">
clean_all_with_value(Tab,X) ->
safe_fixtable(Tab,true),
clean_all_with_value(Tab,X,ets:first(Tab)),
safe_fixtable(Tab,false).
clean_all_with_value(Tab,X,'$end_of_table') ->
true;
clean_all_with_value(Tab,X,Key) ->
case ets:lookup(Tab,Key) of
[{Key,X}] ->
ets:delete(Tab,Key);
_ ->
true
end,
clean_all_with_value(Tab,X,ets:next(Tab,Key)).</code>
<p>Notice that no deleted objects are removed from a
fixed table until it has been released. If a process fixes a
table but never releases it, the memory used by the deleted
objects is never freed. The performance of operations on
the table also degrades significantly.</p>
<p>To retrieve information about which processes have fixed which
tables, use <seealso marker="#info_2_safe_fixed_monotonic_time">
<c>info(Tab, safe_fixed_monotonic_time)</c></seealso>. A system with
many processes fixing tables can need a monitor that sends alarms
when tables have been fixed for too long.</p>
<p>Notice that for table type <c>ordered_set</c>,
<c>safe_fixtable/2</c> is not necessary, as calls to
<c>first/1</c> and <c>next/2</c> always succeed.</p>
</desc>
</func>
<func>
<name name="select" arity="1"/>
<fsummary>Continue matching objects in an ETS table.</fsummary>
<desc>
<p>Continues a match started with
<seealso marker="#select/3"><c>select/3</c></seealso>. The next
chunk of the size specified in the initial <c>select/3</c>
call is returned together with a new <c><anno>Continuation</anno></c>,
which can be used in subsequent calls to this function.</p>
<p>When there are no more objects in the table, <c>'$end_of_table'</c>
is returned.</p>
</desc>
</func>
<func>
<name name="select" arity="2"/>
<fsummary>Match the objects in an ETS table against a
match specification.</fsummary>
<desc>
<p>Matches the objects in table <c><anno>Tab</anno></c> using a
<seealso marker="#match_spec">match specification</seealso>.
This is a more general call than
<seealso marker="#match/2"><c>match/2</c></seealso> and
<seealso marker="#match_object/2"><c>match_object/2</c></seealso>
calls. In its simplest form, the match specification is as
follows:</p>
<code type="none">
MatchSpec = [MatchFunction]
MatchFunction = {MatchHead, [Guard], [Result]}
MatchHead = "Pattern as in ets:match"
Guard = {"Guardtest name", ...}
Result = "Term construct"</code>
<p>This means that the match specification is always a list of one or
more tuples (of arity 3). The first element of the tuple is to be
a pattern as described in
<seealso marker="#match/2"><c>match/2</c></seealso>.
The second element of the tuple is to
be a list of 0 or more guard tests (described below). The
third element of the tuple is to be a list containing a
description of the value to return. In almost all
normal cases, the list contains exactly one term that fully
describes the value to return for each object.</p>
<p>The return value is constructed using the "match variables"
bound in <c>MatchHead</c> or using the special match variables
<c>'$_'</c> (the whole matching object) and <c>'$$'</c> (all
match variables in a list), so that the following
<c>match/2</c> expression:</p>
<code type="none">
ets:match(Tab,{'$1','$2','$3'})</code>
<p>is exactly equivalent to:</p>
<code type="none">
ets:select(Tab,[{{'$1','$2','$3'},[],['$$']}])</code>
<p>And that the following <c>match_object/2</c> call:</p>
<code type="none">
ets:match_object(Tab,{'$1','$2','$1'})</code>
<p>is exactly equivalent to</p>
<code type="none">
ets:select(Tab,[{{'$1','$2','$1'},[],['$_']}])</code>
<p>Composite terms can be constructed in the <c>Result</c> part
either by simply writing a list, so that the following code:</p>
<code type="none">
ets:select(Tab,[{{'$1','$2','$3'},[],['$$']}])</code>
<p>gives the same output as:</p>
<code type="none">
ets:select(Tab,[{{'$1','$2','$3'},[],[['$1','$2','$3']]}])</code>
<p>That is, all the bound variables in the match head as a list. If
tuples are to be constructed, one has to write a tuple of
arity 1 where the single element in the tuple is the tuple
one wants to construct (as an ordinary tuple can be mistaken
for a <c>Guard</c>).</p>
<p>Therefore the following call:</p>
<code type="none">
ets:select(Tab,[{{'$1','$2','$1'},[],['$_']}])</code>
<p>gives the same output as:</p>
<code type="none">
ets:select(Tab,[{{'$1','$2','$1'},[],[{{'$1','$2','$3'}}]}])</code>
<p>This syntax is equivalent to the syntax used in the trace
patterns (see the
<seealso marker="runtime_tools:dbg">
<c>dbg(3)</c></seealso>) module in Runtime_Tools.</p>
<p>The <c>Guard</c>s are constructed as tuples, where the first
element is the test name and the remaining elements
are the test parameters. To check for a specific type
(say a list) of the element bound to the match variable
<c>'$1'</c>, one would write the test as
<c>{is_list, '$1'}</c>. If the test fails, the object in the
table does not match and the next <c>MatchFunction</c> (if
any) is tried. Most guard tests present in Erlang can be
used, but only the new versions prefixed <c>is_</c> are
allowed (<c>is_float</c>, <c>is_atom</c>, and so on).</p>
<p>The <c>Guard</c> section can also contain logic and
arithmetic operations, which are written with the same syntax
as the guard tests (prefix notation), so that the following
guard test written in Erlang:</p>
<code type="none"><![CDATA[
is_integer(X), is_integer(Y), X + Y < 4711]]></code>
<p>is expressed as follows (<c>X</c> replaced with <c>'$1'</c> and
<c>Y</c> with <c>'$2'</c>):</p>
<code type="none"><![CDATA[
[{is_integer, '$1'}, {is_integer, '$2'}, {'<', {'+', '$1', '$2'}, 4711}]]]></code>
<p>For tables of type <c>ordered_set</c>, objects are visited
in the same order as in a <c>first</c>/<c>next</c>
traversal. This means that the match specification is
executed against objects with keys in the <c>first</c>/<c>next</c>
order and the corresponding result list is in the order of that
execution.</p>
</desc>
</func>
<func>
<name name="select" arity="3"/>
<fsummary>Match the objects in an ETS table against a match
specification and return part of the answers.</fsummary>
<desc>
<p>Works like <seealso marker="#select/2"><c>select/2</c></seealso>,
but only returns a limited
(<c><anno>Limit</anno></c>) number of matching objects. Term
<c><anno>Continuation</anno></c> can then be used in subsequent
calls to <seealso marker="#select/1"><c>select/1</c></seealso>
to get the next chunk of matching
objects. This is a space-efficient way to work on objects in a
table, which is still faster than traversing the table object by
object using <seealso marker="#first/1"><c>first/1</c></seealso>
and <seealso marker="#next/2"><c>next/2</c></seealso>.</p>
<p>If the table is empty, <c>'$end_of_table'</c> is returned.</p>
</desc>
</func>
<func>
<name name="select_count" arity="2"/>
<fsummary>Match the objects in an ETS table against a match
specification and return the number of objects for which the match
specification returned <c>true</c>.</fsummary>
<desc>
<p>Matches the objects in table <c><anno>Tab</anno></c> using a
<seealso marker="#match_spec">match specification</seealso>. If the
match specification returns <c>true</c> for an object, that object
considered a match and is counted. For any other result from
the match specification the object is not considered a match and is
therefore not counted.</p>
<p>This function can be described as a
<seealso marker="#match_delete/2"><c>match_delete/2</c></seealso>
function that does not delete any elements, but only counts them.</p>
<p>The function returns the number of objects matched.</p>
</desc>
</func>
<func>
<name name="select_delete" arity="2"/>
<fsummary>Match the objects in an ETS table against a match
specification and delete objects where the match specification
returns <c>true</c>.</fsummary>
<desc>
<p>Matches the objects in table <c><anno>Tab</anno></c> using a
<seealso marker="#match_spec">match specification</seealso>. If the
match specification returns <c>true</c> for an object, that object is
removed from the table. For any other result from the match
specification the object is retained. This is a more general
call than the <seealso marker="#match_delete/2">
<c>match_delete/2</c></seealso> call.</p>
<p>The function returns the number of objects
deleted from the table.</p>
<note>
<p>The match specification has to return the atom <c>true</c> if
the object is to be deleted. No other return value gets the
object deleted. So one cannot use the same match specification for
looking up elements as for deleting them.</p>
</note>
</desc>
</func>
<func>
<name name="select_replace" arity="2"/>
<fsummary>Match and replace objects atomically in an ETS table</fsummary>
<desc>
<p>Matches the objects in the table <c><anno>Tab</anno></c> using a
<seealso marker="#match_spec">match specification</seealso>. For each
matched object, the existing object is replaced with
the match specification result.</p>
<p>The match-and-replace operation for each individual object is guaranteed to be
<seealso marker="#concurrency">atomic and isolated</seealso>. The
<c>select_replace</c> table iteration as a whole, like all other select functions,
does not give such guarantees.</p>
<p>The match specifiction must be guaranteed to <em>retain the key</em>
of any matched object. If not, <c>select_replace</c> will fail with <c>badarg</c>
without updating any objects.</p>
<p>For the moment, due to performance and semantic constraints,
tables of type <c>bag</c> are not yet supported.</p>
<p>The function returns the total number of replaced objects.</p>
<p><em>Example</em></p>
<p>For all 2-tuples with a list in second position, add atom <c>'marker'</c> first in the list:</p>
<pre>
1> <input>T = ets:new(x,[]), ets:insert(T, {key, [1, 2, 3]}).</input>
true
2> <input>MS = ets:fun2ms(fun({K, L}) when is_list(L) -> {K, [marker | L]} end).</input>
[{{'$1','$2'},[{is_list,'$2'}],[{{'$1',[marker|'$2']}}]}]
3> <input>ets:select_replace(T, MS).</input>
1
4> <input>ets:tab2list(T).</input>
[{key,[marker,1,2,3]}]
</pre>
<p>A generic single object compare-and-swap operation:</p>
<pre>
[Old] = ets:lookup(T, Key),
New = update_object(Old),
Success = (1 =:= ets:select_replace(T, [{Old, [], [{const, New}]}])),
</pre>
</desc>
</func>
<func>
<name name="select_reverse" arity="1"/>
<fsummary>Continue matching objects in an ETS table.</fsummary>
<desc>
<p>Continues a match started with <seealso marker="#select_reverse/3">
<c>select_reverse/3</c></seealso>. For tables of type
<c>ordered_set</c>, the traversal of the table continues
to objects with keys earlier in the Erlang term order. The
returned list also contains objects with keys in reverse order.
For all other table types, the behavior is exactly that of
<seealso marker="#select/1"><c>select/1</c></seealso>.</p>
<p><em>Example:</em></p>
<code>
1> T = ets:new(x,[ordered_set]).
2> [ ets:insert(T,{N}) || N <- lists:seq(1,10) ].
...
3> {R0,C0} = ets:select_reverse(T,[{'_',[],['$_']}],4).
...
4> R0.
[{10},{9},{8},{7}]
5> {R1,C1} = ets:select_reverse(C0).
...
6> R1.
[{6},{5},{4},{3}]
7> {R2,C2} = ets:select_reverse(C1).
...
8> R2.
[{2},{1}]
9> '$end_of_table' = ets:select_reverse(C2).
...</code>
</desc>
</func>
<func>
<name name="select_reverse" arity="2"/>
<fsummary>Match the objects in an ETS table against a
match specification.</fsummary>
<desc>
<p>Works like <seealso marker="#select/2"><c>select/2</c></seealso>,
but returns the list in reverse order for table type <c>ordered_set</c>.
For all other table types, the return value is identical to that of
<c>select/2</c>.</p>
</desc>
</func>
<func>
<name name="select_reverse" arity="3"/>
<fsummary>Match the objects in an ETS table against a
match specification and return part of the answers.</fsummary>
<desc>
<p>Works like <seealso marker="#select/3"><c>select/3</c></seealso>,
but for table type <c>ordered_set</c>
traversing is done starting at the last object in
Erlang term order and moves to the first. For all other table
types, the return value is identical to that of <c>select/3</c>.</p>
<p>Notice that this is <em>not</em> equivalent to
reversing the result list of a <c>select/3</c> call, as the result list
is not only reversed, but also contains the last
<c><anno>Limit</anno></c>
matching objects in the table, not the first.</p>
</desc>
</func>
<func>
<name name="setopts" arity="2"/>
<fsummary>Set table options.</fsummary>
<desc>
<p>Sets table options. The only allowed option to be set after the
table has been created is
<seealso marker="#heir"><c>heir</c></seealso>.
The calling process must be the table owner.</p>
</desc>
</func>
<func>
<name name="slot" arity="2"/>
<fsummary>Return all objects in a specified slot of an ETS table.
</fsummary>
<desc>
<p>This function is mostly for debugging purposes, Normally
<c>first</c>/<c>next</c> or <c>last</c>/<c>prev</c> are to be used
instead.</p>
<p>Returns all objects in slot <c><anno>I</anno></c> of table
<c><anno>Tab</anno></c>. A table can be traversed by repeatedly
calling the function,
starting with the first slot <c><anno>I</anno>=0</c> and
ending when <c>'$end_of_table'</c> is returned.
If argument <c><anno>I</anno></c> is out of range,
the function fails with reason <c>badarg</c>.</p>
<p>Unless a table of type <c>set</c>, <c>bag</c>, or
<c>duplicate_bag</c> is protected using
<seealso marker="#safe_fixtable/2"><c>safe_fixtable/2</c></seealso>,
a traversal can fail if
concurrent updates are made to the table. For table type
<c>ordered_set</c>, the function returns a list containing
object <c><anno>I</anno></c> in Erlang term order.</p>
</desc>
</func>
<func>
<name name="tab2file" arity="2"/>
<fsummary>Dump an ETS table to a file.</fsummary>
<desc>
<p>Dumps table <c><anno>Tab</anno></c> to file
<c><anno>Filename</anno></c>.</p>
<p>Equivalent to
<c>tab2file(<anno>Tab</anno>, <anno>Filename</anno>,[])</c></p>
</desc>
</func>
<func>
<name name="tab2file" arity="3"/>
<fsummary>Dump an ETS table to a file.</fsummary>
<desc>
<p>Dumps table <c><anno>Tab</anno></c> to file
<c><anno>Filename</anno></c>.</p>
<p>When dumping the table, some information about the table
is dumped to a header at the beginning of the dump. This
information contains data about the table type,
name, protection, size, version, and if it is a named table. It
also contains notes about what extended information is added
to the file, which can be a count of the objects in the file
or a MD5 sum of the header and records in the file.</p>
<p>The size field in the header might not correspond to the
number of records in the file if the table is public
and records are added or removed from the table during
dumping. Public tables updated during dump, and that one wants
to verify when reading, needs at least one field of extended
information for the read verification process to be reliable
later.</p>
<p>Option <c>extended_info</c> specifies what extra
information is written to the table dump:</p>
<taglist>
<tag><c>object_count</c></tag>
<item>
<p>The number of objects written to the file is
noted in the file footer, so file truncation can be
verified even if the file was updated during dump.</p>
</item>
<tag><c>md5sum</c></tag>
<item>
<p>The header and objects in the file are checksummed using
the built-in MD5 functions. The MD5 sum of all objects is
written in the file footer, so that verification while reading
detects the slightest bitflip in the file data. Using this
costs a fair amount of CPU time.</p>
</item>
</taglist>
<p>Whenever option <c>extended_info</c> is used, it
results in a file not readable by versions of ETS before
that in STDLIB 1.15.1</p>
<p>If option <c>sync</c> is set to <c>true</c>, it ensures that
the content of the file is written to the disk before
<c>tab2file</c> returns. Defaults to <c>{sync, false}</c>.</p>
</desc>
</func>
<func>
<name name="tab2list" arity="1"/>
<fsummary>Return a list of all objects in an ETS table.</fsummary>
<desc>
<p>Returns a list of all objects in table <c><anno>Tab</anno></c>.</p>
</desc>
</func>
<func>
<name name="tabfile_info" arity="1"/>
<fsummary>Return a list of all objects in an ETS table.</fsummary>
<desc>
<p>Returns information about the table dumped to file by
<seealso marker="#tab2file/2"><c>tab2file/2</c></seealso> or
<seealso marker="#tab2file/3"><c>tab2file/3</c></seealso>.</p>
<p>The following items are returned:</p>
<taglist>
<tag><c>name</c></tag>
<item>
<p>The name of the dumped table. If the table was a
named table, a table with the same name cannot exist when the
table is loaded from file with
<seealso marker="#file2tab/2"><c>file2tab/2</c></seealso>.
If the table is
not saved as a named table, this field has no significance
when loading the table from file.</p>
</item>
<tag><c>type</c></tag>
<item>
<p>The ETS type of the dumped table (that is, <c>set</c>,
<c>bag</c>, <c>duplicate_bag</c>, or <c>ordered_set</c>). This
type is used when loading the table again.</p>
</item>
<tag><c>protection</c></tag>
<item>
<p>The protection of the dumped table (that is, <c>private</c>,
<c>protected</c>, or <c>public</c>). A table loaded from the
file gets the same protection.</p>
</item>
<tag><c>named_table</c></tag>
<item>
<p><c>true</c> if the table was a named table when dumped
to file, otherwise <c>false</c>. Notice that when a named table
is loaded from a file, there cannot exist a table in the
system with the same name.</p>
</item>
<tag><c>keypos</c></tag>
<item>
<p>The <c>keypos</c> of the table dumped to file, which
is used when loading the table again.</p>
</item>
<tag><c>size</c></tag>
<item>
<p>The number of objects in the table when the table dump
to file started. For a <c>public</c> table, this number
does not need to correspond to the number of objects saved to
the file, as objects can have been added or deleted by another
process during table dump.</p>
</item>
<tag><c>extended_info</c></tag>
<item>
<p>The extended information written in the file footer to
allow stronger verification during table loading from file, as
specified to <seealso marker="#tab2file/3">
<c>tab2file/3</c></seealso>. Notice that this
function only tells <em>which</em> information is present, not
the values in the file footer. The value is a list containing one
or more of the atoms <c>object_count</c> and <c>md5sum</c>.</p>
</item>
<tag><c>version</c></tag>
<item>
<p>A tuple <c>{<anno>Major</anno>,<anno>Minor</anno>}</c>
containing the major and
minor version of the file format for ETS table dumps. This
version field was added beginning with STDLIB 1.5.1.
Files dumped with older versions return <c>{0,0}</c> in this
field.</p>
</item>
</taglist>
<p>An error is returned if the file is inaccessible,
badly damaged, or not produced with
<seealso marker="#tab2file/2"><c>tab2file/2</c></seealso> or
<seealso marker="#tab2file/3"><c>tab2file/3</c></seealso>.</p>
</desc>
</func>
<func>
<name name="table" arity="1"/>
<name name="table" arity="2"/>
<fsummary>Return a QLC query handle.</fsummary>
<desc>
<p>Returns a Query List
Comprehension (QLC) query handle. The
<seealso marker="qlc"><c>qlc</c></seealso> module provides
a query language aimed mainly at Mnesia, but ETS
tables, Dets tables,
and lists are also recognized by QLC as sources of
data. Calling <c>table/1,2</c> is the means to make the
ETS table <c>Tab</c> usable to QLC.</p>
<p>When there are only simple restrictions on the key position,
QLC uses <seealso marker="#lookup/2"><c>lookup/2</c></seealso>
to look up the keys. When
that is not possible, the whole table is traversed.
Option <c>traverse</c> determines how this is done:</p>
<taglist>
<tag><c>first_next</c></tag>
<item>
<p>The table is traversed one key at a time by calling
<seealso marker="#first/1"><c>first/1</c></seealso> and
<seealso marker="#next/2"><c>next/2</c></seealso>.</p>
</item>
<tag><c>last_prev</c></tag>
<item>
<p>The table is traversed one key at a time by calling
<seealso marker="#last/1"><c>last/1</c></seealso> and
<seealso marker="#prev/2"><c>prev/2</c></seealso>.</p>
</item>
<tag><c>select</c></tag>
<item>
<p>The table is traversed by calling
<seealso marker="#select/3"><c>select/3</c></seealso> and
<seealso marker="#select/1"><c>select/1</c></seealso>.
Option <c>n_objects</c> determines the number of objects
returned (the third argument of <c>select/3</c>); the
default is to return <c>100</c> objects at a time. The
<seealso marker="#match_spec">match specification</seealso> (the
second argument of <c>select/3</c>) is assembled by QLC: simple
filters are translated into equivalent match specifications
while more complicated filters must be applied to all
objects returned by <c>select/3</c> given a match specification
that matches all objects.</p>
</item>
<tag><c>{select, <anno>MatchSpec</anno>}</c></tag>
<item>
<p>As for <c>select</c>, the table is traversed by calling
<seealso marker="#select/3"><c>select/3</c></seealso> and
<seealso marker="#select/1"><c>select/1</c></seealso>.
The difference is that the match specification is explicitly
specified. This is how to state match specifications that cannot
easily be expressed within the syntax provided by QLC.</p>
</item>
</taglist>
<p><em>Examples:</em></p>
<p>An explicit match specification is here used to traverse the
table:</p>
<pre>
9> <input>true = ets:insert(Tab = ets:new(t, []), [{1,a},{2,b},{3,c},{4,d}]),</input>
<input>MS = ets:fun2ms(fun({X,Y}) when (X > 1) or (X < 5) -> {Y} end),</input>
<input>QH1 = ets:table(Tab, [{traverse, {select, MS}}]).</input></pre>
<p>An example with an implicit match specification:</p>
<pre>
10> <input>QH2 = qlc:q([{Y} || {X,Y} <- ets:table(Tab), (X > 1) or (X < 5)]).</input></pre>
<p>The latter example is equivalent to the former, which
can be verified using function <c>qlc:info/1</c>:</p>
<pre>
11> <input>qlc:info(QH1) =:= qlc:info(QH2).</input>
true</pre>
<p><c>qlc:info/1</c> returns information about a query handle,
and in this case identical information is returned for the
two query handles.</p>
</desc>
</func>
<func>
<name name="take" arity="2"/>
<fsummary>Return and remove all objects with a specified key from an
ETS table.</fsummary>
<desc>
<p>Returns and removes a list of all objects with key
<c><anno>Key</anno></c> in table <c><anno>Tab</anno></c>.</p>
<p>The specified <c><anno>Key</anno></c> is used to identify the object
by either <em>comparing equal</em> the key of an object in an
<c>ordered_set</c> table, or <em>matching</em> in other types of
tables (for details on the difference, see
<seealso marker="#lookup/2"><c>lookup/2</c></seealso> and
<seealso marker="#new/2"><c>new/2</c></seealso>).</p>
</desc>
</func>
<func>
<name name="test_ms" arity="2"/>
<fsummary>Test a match specification for use in <c>select/2</c>.
</fsummary>
<desc>
<p>This function is a utility to test a
<seealso marker="#match_spec">match specification</seealso> used in
calls to <seealso marker="#select/2"><c>select/2</c></seealso>.
The function both tests <c><anno>MatchSpec</anno></c> for "syntactic"
correctness and runs the match specification against object
<c><anno>Tuple</anno></c>.</p>
<p>If the match specification is syntactically correct, the function
either returns <c>{ok,<anno>Result</anno>}</c>, where
<c><anno>Result</anno></c> is what would have been the result in a
real <c>select/2</c> call, or <c>false</c> if the match specification
does not match object <c><anno>Tuple</anno></c>.</p>
<p>If the match specification contains errors, tuple
<c>{error, <anno>Errors</anno>}</c> is returned,
where <c><anno>Errors</anno></c> is a list of natural language
descriptions of what was wrong with the match specification.</p>
<p>This is a useful debugging and test tool, especially when
writing complicated <c>select/2</c> calls.</p>
<p>See also: <seealso marker="erts:erlang#match_spec_test/3">
erlang:match_spec_test/3</seealso>.</p>
</desc>
</func>
<func>
<name name="to_dets" arity="2"/>
<fsummary>Fill a Dets table with objects from an ETS table.
</fsummary>
<desc>
<p>Fills an already created/opened Dets table with the objects
in the already opened ETS table named <c><anno>Tab</anno></c>.
The Dets table is emptied before the objects are inserted.</p>
</desc>
</func>
<func>
<name name="update_counter" arity="3" clause_i="1"/>
<name name="update_counter" arity="4" clause_i="1"/>
<name name="update_counter" arity="3" clause_i="2"/>
<name name="update_counter" arity="4" clause_i="2"/>
<name name="update_counter" arity="3" clause_i="3"/>
<name name="update_counter" arity="4" clause_i="3"/>
<fsummary>Update a counter object in an ETS table.</fsummary>
<type variable="Tab"/>
<type variable="Key"/>
<type variable="UpdateOp" name_i="1"/>
<type variable="Pos" name_i="1"/>
<type variable="Threshold" name_i="1"/>
<type variable="SetValue" name_i="1"/>
<type variable="Default"/>
<desc>
<p>This function provides an efficient way to update one or more
counters, without the trouble of having to look up an object, update
the object by incrementing an element, and insert the resulting
object into the table again. (The update is done atomically,
that is, no process
can access the ETS table in the middle of the operation.)</p>
<p>This function destructively update the object with key
<c><anno>Key</anno></c> in table <c><anno>Tab</anno></c> by adding
<c><anno>Incr</anno></c> to the element at position
<c><anno>Pos</anno></c>. The new counter value is
returned. If no position is specified, the element directly
following key (<c><![CDATA[<keypos>+1]]></c>) is updated.</p>
<p>If a <c><anno>Threshold</anno></c> is specified, the counter is
reset to value <c><anno>SetValue</anno></c> if the following
conditions occur:</p>
<list type="bulleted">
<item><p><c><anno>Incr</anno></c> is not negative (<c>>= 0</c>) and
the result would be greater than (<c>></c>)
<c><anno>Threshold</anno></c>.</p>
</item>
<item><p><c><anno>Incr</anno></c> is negative
(<c><![CDATA[< 0]]></c>) and the result would be less than
(<c><![CDATA[<]]></c>) <c><anno>Threshold</anno></c>.</p>
</item>
</list>
<p>A list of <c><anno>UpdateOp</anno></c> can be supplied to do many
update operations within the object.
The operations are carried out in the
order specified in the list. If the same counter position occurs
more than once in the list, the corresponding counter is thus
updated many times, each time based on the previous result.
The return value is a list of the new counter values from each
update operation in the same order as in the operation list. If an
empty list is specified, nothing is updated and an empty list is
returned. If the function fails, no updates is done.</p>
<p>The specified <c><anno>Key</anno></c> is used to identify the object
by either <em>matching</em> the key of an object in a <c>set</c>
table, or <em>compare equal</em> to the key of an object in an
<c>ordered_set</c> table (for details on the difference, see
<seealso marker="#lookup/2"><c>lookup/2</c></seealso> and
<seealso marker="#new/2"><c>new/2</c></seealso>).</p>
<p>If a default object <c><anno>Default</anno></c> is specified,
it is used
as the object to be updated if the key is missing from the table. The
value in place of the key is ignored and replaced by the proper key
value. The return value is as if the default object had not been used,
that is, a single updated element or a list of them.</p>
<p>The function fails with reason <c>badarg</c> in the following
situations:</p>
<list type="bulleted">
<item>The table type is not <c>set</c> or
<c>ordered_set</c>.</item>
<item>No object with the correct key exists and no default object was
supplied.</item>
<item>The object has the wrong arity.</item>
<item>The default object arity is smaller than
<c><![CDATA[<keypos>]]></c>.</item>
<item>Any field from the default object that is updated is not an
integer.</item>
<item>The element to update is not an integer.</item>
<item>The element to update is also the key.</item>
<item>Any of <c><anno>Pos</anno></c>, <c><anno>Incr</anno></c>,
<c><anno>Threshold</anno></c>, or <c><anno>SetValue</anno></c>
is not an integer.</item>
</list>
</desc>
</func>
<func>
<name name="update_element" arity="3" clause_i="1"/>
<name name="update_element" arity="3" clause_i="2"/>
<fsummary>Update the <c>Pos</c>:th element of the object with a
specified key in an ETS table.</fsummary>
<type variable="Tab"/>
<type variable="Key"/>
<type variable="Value"/>
<type variable="Pos"/>
<desc>
<p>This function provides an efficient way to update one or more
elements within an object, without the trouble of having to look up,
update, and write back the entire object.</p>
<p>This function destructively updates the object with key
<c><anno>Key</anno></c> in table <c><anno>Tab</anno></c>.
The element at position <c><anno>Pos</anno></c> is given
the value <c><anno>Value</anno></c>.</p>
<p>A list of <c>{<anno>Pos</anno>,<anno>Value</anno>}</c> can be
supplied to update many
elements within the same object. If the same position occurs more
than once in the list, the last value in the list is written. If
the list is empty or the function fails, no updates are done.
The function is also atomic in the sense that other processes
can never see any intermediate results.</p>
<p>Returns <c>true</c> if an object with key <c><anno>Key</anno></c>
is found, otherwise <c>false</c>.</p>
<p>The specified <c><anno>Key</anno></c> is used to identify the object
by either <em>matching</em> the key of an object in a <c>set</c>
table, or <em>compare equal</em> to the key of an object in an
<c>ordered_set</c> table (for details on the difference, see
<seealso marker="#lookup/2"><c>lookup/2</c></seealso> and
<seealso marker="#new/2"><c>new/2</c></seealso>).</p>
<p>The function fails with reason <c>badarg</c> in the following
situations:</p>
<list type="bulleted">
<item>The table type is not <c>set</c> or <c>ordered_set</c>.</item>
<item><c><anno>Pos</anno></c> < 1.</item>
<item><c><anno>Pos</anno></c> > object arity.</item>
<item>The element to update is also the key.</item>
</list>
</desc>
</func>
</funcs>
</erlref>
|