6 ms·
We had adopted Erlang in the real-time trading system and it is online now. However I hope mnesia will break 2G limitation in the near future.
by jacktang 16y ago
We had adopted Erlang in the real-time trading system and it is online now. However I hope mnesia will break 2G limitation in the near future.
- billiob 16y agoThe limit is on disk-only tables (due to Dets using 32-bit file offsets). The limit of on-memory tables is 16 exabytes on 64-bit systems.
- sgt 16y agoOn-memory tables. But what would you do when you need to restart the program, or the entire system? Or can you persist the on-memory on disk somehow?