Viewing profile — biokoda
biokoda
HN member- Joined
- Tue, Jan 21, 2014, 8:45 PM UTC
- HN karma
- 577
- Public activity
- 230 items
- HN profile
- View on Hacker News ↗
About biokoda
No profile information was provided.
Recent public activity
-
comment
Comment #17336204
Schemas are per actor type and you can have many types. Actors are active or inactive. When you run a query against one, when it becomes active it will check if schema has changed …
-
comment
Comment #17332700
From that point of view yes you are right. There is a ton of nuance in CAP. Usually in these discussions the CAP question is if it is eventually consistent or not.
-
comment
Comment #17332194
It's raft; thus firmly CP.
-
comment
Comment #15915635
Yes a user space thread pool which is what node.js does on top of libuv.
-
comment
Comment #15781953
> Waiting 200ms for the database + an additional 20ms for rendering Those are pretty awful numbers. https://blog.gigaspaces.com/amazon-found-every-100ms-of-late...
-
comment
Comment #15763514
History has proven that anyone no matter their abilities is going to shoot themselves in the foot regularly while using C. Some just less frequently.
- comment
-
comment
Comment #15459826
> Depending on how you define "big changes". The way every reasonable person would. This release being the obvious example.
-
comment
Comment #15459730
That is entirely untrue. Releases are regular, big changes are anything but.
-
comment
Comment #15392909
> Well, someone probably said the same about Go or React-Native when they first came out too RN came from a giant company that uses it in its core product. Big difference.
-
comment
Comment #15169374
Yes SQLite with type check constraints.
-
comment
Comment #15007709
io_ syscalls only really work on XFS and require O_DIRECT which means kernel is not caching anything. Unsuitable for web servers.
-
comment
Comment #14939605
Changing the number of cores given to a VM is not so uncommon.
-
comment
Comment #14903446
> There's no middle ground. Not at all. This is what the ? operator is for (was try! before). The idiomatic rust way is to have your own Error type that implements From for other E…
-
comment
Comment #14775856
Overly complicated
-
comment
Comment #14775740
It's far from clear if tokio is not a dead end.
-
comment
Comment #14755166
You can write low level code. Tier 1 platform list is very short however. https://forge.rust-lang.org/platform-support.html
-
comment
Comment #14754991
A huge win compared to C is fearless refactoring. Making changes to an existing codebase in C is a minefield. Refactoring in Rust is a breeze.
-
comment
Comment #14754284
The relatively low portability of rust programs is definitely one of its largest shortcomings.
-
comment
Comment #14752564
The point of Erlang is that it makes writing robust distributed systems easy and fast. The language itself is tiny. Scala on the other hand is not remotely small and easy to unders…
-
comment
Comment #14661092
Lots of companies (like us) use it as basically a replacement for C/C++. They just don't discuss it much.
-
comment
Comment #14383256
Anyone needing that can also extract tikv's raft implementation. It's actually quite easy.
-
comment
Comment #14365013
One plus is the best choice. Great hardware, reasonable price, up-to-date Android no horrible skins on top of stock.
-
comment
Comment #14216845
C/C++ compiler will compile your code if it is correct. Rust will not compile code if it can detect that it will not work or it is not safe even though the syntax is correct. It ca…
-
comment
Comment #14082746
A single repo can have lots of crates