Viewing profile — jiryu
jiryu
HN member- Joined
- Tue, Jul 10, 2012, 2:53 AM UTC
- HN karma
- 84
- Public activity
- 14 items
- HN profile
- View on Hacker News ↗
About jiryu
[ my public key: https://keybase.io/emptysquare; my proof: https://keybase.io/emptysquare/sigs/jUfaNijti8giFkhkT6N01aZ4ffhvH6ac_4E95qu2iKY ]
Recent public activity
-
comment
Comment #44168947
That's a really cool technique oggy, I don't think I've heard of anything exactly like it. If you haven't told the TLA+ community about it yet, I'm sure they'd like to learn about …
-
comment
Comment #27861127
I gave the presentation in the linked article, here's a written version of the presentation: https://emptysqua.re/blog/paxos-vs-raft/ I hope that the "Paxos vs Raft" debate can die…
-
comment
Comment #16605120
"Avoid instant messaging at all costs" is definitely good advice. I usually forget to take three breaths before answering there, but I usually remember before I answer an email. Pl…
- story
- story
-
comment
Comment #6669639
MongoDB, Inc. in New York City, Palo Alto, and worldwide. H1B welcome. We make the open-source document database. Virtually all the software we make is open source. We solve very h…
- story
-
comment
Comment #4837443
w00t!
-
comment
Comment #4628182
No - it can only use one for a given query. But a compound index like the ones I describe in the post can index many fields.
- story
-
comment
Comment #4448737
None, almost certainly -- if you have enough RAM to fit your working data set, then MongoDB's writes are just changing memory. If it does need to read data from disk before changin…
-
comment
Comment #4448727
One of the reasons DB-level locking is actually quite important is that the replication oplog is on the 'local' database and your data is on other databases -- so your application …
- story
-
story
How I Asynchronized a Synchronous Python Library
I wrote Motor, a non-blocking MongoDB driver for Python and Tornado. Here's how it works.