2
votes
2answers
157 views
erlang - how can I match tuple contents with qlc and mnesia ?
Hi.
I have a mnesia table for this record.
-record(peer, {
peer_key, %% key is the tuple {FileId, PeerId}
last_seen,
last_event,
uploaded = 0,
download …
2
votes
3answers
225 views
Eventually consistent mnesia database with erlang. Best practices anyone?
Hi.
I'm writing a bittorrent tracker in erlang. Given the nature of the service,
I won't need absolute consistency (ie. a client can be perfectly happy with a slightly outdated list of peer …
