Live data from Hacker News

Viewing profile — jiryu

jiryu

HN member
Joined
Tue, Jul 10, 2012, 2:53 AM UTC
HN karma
84
Public activity
14 items

About jiryu

I'm A. Jesse Jiryu Davis a software developer for MongoDB Inc. specializing in C, Python, and Tornado.

[ my public key: https://keybase.io/emptysquare; my proof: https://keybase.io/emptysquare/sigs/jUfaNijti8giFkhkT6N01aZ4ffhvH6ac_4E95qu2iKY ]

Recent public activity

  1. 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 …

  2. 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…

  3. 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…

  4. story
  5. story
  6. 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…

  7. story
  8. comment
  9. 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.

  10. story
  11. 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…

  12. 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 …

  13. story
  14. 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.