Alex Gaetano Padula

Results 8 comments of Alex Gaetano Padula

Hey @krotik look into ChaCha or SALSA20 I can help with encryption and even compression if you want.

This could be implemented. Thank you for the suggestion @jlambright . Let me see what I can do. I will report back.

Why not a read-write lock skiplist? Why the granular concurrency? It will lead to complexity and unsafely no? From experience I can’t say you’ll get major performance boosts doing a...

**Well the current skiplist already is concurrent. Granular not being better is anecdotal, the point is to have a lock-free read path, and make reads not blocking writes too much.**...

@NicoleStrel a skip list probably wont surpass the speed of a go map. For a data structure that keeps things sorted yeah a skip list could work well but in...

If you want a really fast in-memory sorted data structured a BStar tree or BStarPlus tree would be amazing. I am working on this on the side and the write...

Really cool. Great work @marvin-j97 Curious why you chose to not use column family naming? Like cassandra and rocksdb? I get the piece you wrote regarding implying columns are stored...

Right on. Thank you for the quick comment and keep it up!