Veil HN: Anansi – Ruby の窮状、相当なサイズの義務に対するメモリとディスク (SQLite) の使用
a hybrid Ruby Set using memory and disk (SQLite) for large sized tasks What?An append only Set that uses constant memory by spilling to disk after crossing a size threshold.Why?A Set in memory isn’t great for huge tasks. But a disk based Set is too slow for everything. We need the best of both worlds.InstallationInstall…