The ets tag has no wiki summary.
20
votes
1answer
515 views
Erlang: optimize complex qlc
I have qlc
RefsBlocked = qlc:e(qlc:q([
Ref1 ||
{{Ref1, {pattern, {_Status1, _Pattern1, Limit1}}}, Count} <- dict:to_list(
qlc:fold(
fun({Key, _Ref2}, Acc) ->
...
9
votes
3answers
268 views
Erlang ETS tables versus message passing: Optimization concerns?
I'm coming into an existing (game) project whose server component is written entirely in erlang. At times, it can be excruciating to get a piece of data from this system (I'm interested in how many ...
4
votes
3answers
296 views
Speed-up and best practices: Using ets for per-module pre-computed data
((Please forgive me that I ask more than one question in a single thread. I think they are related.))
Hello, I wanted to know, what best practices exist in Erlang in regards to per-module precompiled ...
4
votes
3answers
202 views
Mostly read only use of DETS
So I have been using ETS - works great. However, I use it as a cache of route data - which I load when the module loads, and save when a change is made (it is read far more than written).
I was ...
4
votes
2answers
421 views
Using ets:foldl as a poor man's forEach on every record
Short version: is it safe to use ets:foldl to delete every ETS record as one is iterating through them?
Suppose an ETS table is accumulating information and now it's time to process it all. A record ...
3
votes
3answers
138 views
How to match ets:match against a record in Erlang?
I have heard that specifying records through tuples in the code is a bad practice: I should always use record fields (#record_name{record_field = something}) instead of plain tuples {record_name, ...
2
votes
1answer
117 views
retrieval of data from ETS table
I know that lookup time is constant for ETS tables. But I also heard that the table is kept outside of the process and when retrieving data, it needs to be moved to the process heap. So, this is ...
2
votes
2answers
59 views
ETS set preserving order?
Does ETS set guarantee that internal order of tuples is the same as the order by which they were inserted? For instance: I keep a log by inserting a tuple every second, timestamp is the key. In this ...
2
votes
1answer
714 views
gen_server with a dict vs mnesia table vs ets
I'm building an erlang server.
Users sends http requests to the server to update their status.
The http request process on the server saves the user status message in memory.
Every minute the server ...
2
votes
2answers
481 views
Erlang/ets: reset ets table after getting a “bad argument”?
I've been learning how to use ets, but one thing that has bothered me is that, occasionally*, ets:match throws a bad argument… And, from them on, all subsequent calls (even calls which previously ...
1
vote
1answer
122 views
How to find erlang ets table fields info?
What is the way to find fields info(i.e field names) for ets table in erlang ?
I have tried ets:info(TableName), ets:i(TableName). First one gives the detail about the table like ...
1
vote
0answers
190 views
Erlang: Find intersections in a ets table
I have an ets with the next items:
[at, {other_place}, me],
[other_place, {place}, {other_place}]],
[at, {place}, me],
[on, {surface}, {object}],
[small, {object}]
And I have the list [[at, door, ...
1
vote
1answer
147 views
Using ETS Select To Form An Intersection
i have the following ets structure:
SomeTable = ets:new(sometable, [bag]).
ets:insert(SomeTable, [
{set1,item1},
{set1,item2},
...
0
votes
1answer
62 views
ETS ordered_set and effective pagination
I keep {Key, Value} data in ETS ordered_set where Key is a datetime. It is pretty easy to select all items in the given time internal [From, To].
Something like that:
ets:select(Tab, [{{'$1', '$2'}, ...
0
votes
1answer
158 views
erlang: function called with real 'fun' should be transformed with parse_transform?
I'm looking at the O'Reilly Erlang Programming book and there's an example that is run in the erlang shell that looks like this:
17> MS = ets:fun2ms(fun({Name,Country,Job}) when Job /= cook ->
...