Viewing profile — sphix
sphix
HN member- Joined
- Tue, Jan 03, 2017, 7:31 PM UTC
- HN karma
- 11
- Public activity
- 7 items
- HN profile
- View on Hacker News ↗
About sphix
No profile information was provided.
Recent public activity
-
comment
Comment #14822314
Any reason to suspect it'll affect it more than Uber pool and Lyft line already have?
-
comment
Comment #14415774
Typically you solve that through a rewrite, followed by migration and depreciation. Since the microservice is small, you can ideally accomplish the rewrite in under a week.
-
comment
Comment #13755101
The Google version is supposedly coupled heavily to their infrastructure and therefore would give little benefit to opensource without also open sourcing a large portion of their i…
-
comment
Comment #13600817
Sometimes I wonder if these online tools mine data on text blobs and regex we pass in. I can only imagine how potential IP could be leaked if the data was correlated to a company t…
-
comment
Comment #13411630
The article specifies two independent verifications.
-
comment
Comment #13338986
The problem with IOCP is that it is more memory intensive as all memory for outstanding operations must be pre-allocated. With the readiness model, you can use pools of memory inst…
-
comment
Comment #13338944
kqueue allows for batch updates on fds that are being polled for readiness. In addition, it has less hacky support for non-socket files such as timers, events, signals, and disk IO…