Viewing profile — schumihan
schumihan
HN member- Joined
- Sat, Jul 17, 2010, 8:14 AM UTC
- HN karma
- 13
- Public activity
- 31 items
- HN profile
- View on Hacker News ↗
About schumihan
Recent public activity
-
comment
Comment #2871045
Cassandra is a good fit for write heavy workload, as it is optimized for write...
-
comment
Comment #2827423
Agreed. You can achieve very high productivity if you use Scala and Java properly.
-
comment
Comment #2733932
I just notice VIA and HTC are founded by the same woman[1], and I know the financial situation of VIA is not good... [1] http://blog.laptopmag.com/2011-most-important-women-in-mobi…
-
comment
Comment #2496090
"A user's data is stored in a single row in HBase" Some column families of HBase can be accumulated to hundreds of mega bytes very easily, I'm afraid...
-
comment
Comment #2422165
The token in cookie stored by browser is portable, either. How can web apps prevent the attackers exploiting the system from stealing the cookie token?
-
comment
Comment #2109116
When different customers use different key to encrypt the data, even if the source is the same, the outcome is different. So it is not feasible to do de-duplication across differen…
-
comment
Comment #2108537
Does SpiderOak only provide backup service? Erasure encoding is efficient for cold data. Do you use erasure encoding to distribute the hot data across clusters?
-
comment
Comment #2106791
I use patch queue[1] to manage these short lived branch, and it works for my purpose. You just pop the patches and delete them all when you want to prunge the branch. It also make …
-
comment
Comment #2090506
If I tries to shorten the url of http://google.com several times, goo.gl always give back different result. I just wonder will goo.gl merge theses url together sometime later? This…
-
comment
Comment #2082197
The architecture of MegaStore is so complicated... There are so many roles in the system, e.g. stateless replicate server, different stateful paxos instances, stateful co-coordinat…
-
comment
Comment #2074845
Unlike Bigtable/HBase, cassandra is fully distributed, either, just as Dynamo...
-
comment
Comment #2074839
For any SQL/NoSQL system, the more RAM, the better. They need as much RAM as possible to cache the data. If you observed cassandra consumes a lot of RAM even with small dataset, yo…
-
comment
Comment #2055192
Most of the time, I use both as a tool to do visual diff, instead of code merge. KDiff3 is not so good as winmerge as visual diff tool. And kdiff3 UI has small problem on Ubuntu, a…
-
comment
Comment #2055182
+1 for beanstalkd. Zero deployment and blazing fast!
-
comment
Comment #2051843
Why are there so many "best papers" on CHI 2010?
-
comment
Comment #2042257
I like winmerge. Even kdiff3 is not as useful as winmerge, IMHO. http://kdiff3.sourceforge.net/
-
comment
Comment #2023142
On their hardware appliance, they use a special instruction to implement the barrier. For software appliance, the performance may be a real problem.
-
comment
Comment #2007808
I think this is reasonable. My guess: Gmail wants you to invite somebody in your contact list directly. And they are reluctant to reset the cap of invitation because there are so m…
-
comment
Comment #2007802
But why do they not hide the interface directly?
-
comment
Comment #1990495
Can we build a system above ZeroMQ for such purpose easily? I think the async semantic of ZeroMQ is suitable to mitigate the latency of multiple RPC.
-
comment
Comment #1990492
It's very difficult to avoid it when thing goes complicating. A may reference B, B may reference C, ... and somewhere, X may reference back to A. If this strategy makes sense for b…
-
comment
Comment #1986919
Reference count based GC? How would you deal with circular reference?
-
comment
Comment #1982115
Is it similar to ZeroMQ( http://www.zeromq.org/ )?
-
comment
Comment #1936236
Are you use 0.6.x branch or 0.7 branch? 0.6.x is quite stable in my deployment.
-
comment
Comment #1912598
I suppose fb caches the recent messages in memory, and use HBASE as archive storage most of the time. It depends on the developer's favor to pick up a system. If it's me, I will pi…