Viewing profile — aweisberg
aweisberg
HN member- Joined
- Wed, May 26, 2010, 8:34 PM UTC
- HN karma
- 15
- Public activity
- 15 items
- HN profile
- View on Hacker News ↗
About aweisberg
Recent public activity
-
comment
Comment #6725095
I have the same grandfathered plan. I wish I had bought more storage when it was available. It looks like we aren't getting any upgrades not that I blame them.
-
comment
Comment #6551085
I would be really surprised to find that a tree is faster then a fast cryptographic hash function like SIP hash. Cache misses to main memory are worth 10s of instructions and that …
-
comment
Comment #6551055
This is actually an important topic for me. I am implementing a sharding distribution based on consistent hashing using MurmurHash3 as hash function. I am taking the first 4-bytes …
-
comment
Comment #6551029
A secret seed is not sufficient to prevent DoS vulnerabilities. That is one of the things the creators of SIP hash demonstrated. You can create collisions with MurmurHash3 that wor…
-
comment
Comment #6346945
For the last 18 years or so I have been taking some form of low cost Ritalin with a co-pay between 15-25 dollars. This ancient medication that is a generic costs 130 dollars a mont…
-
comment
Comment #5804681
Is comparing a hex-core to a quad-core apples to apples? Haswell per core performance is still better although it will be a long time before we see a hex-core part.
-
comment
Comment #3853506
The intent of the test was to measure throughput. Since the API is asynchronous that means the client was submitting as much work as would fit in the queues at both client and serv…
-
comment
Comment #1654322
Neoview and Teradata are OLAP databases. OLTP is a different problem.
-
comment
Comment #1636691
NoSQL doesn't mean NoDurability. Many of them offer better multi-datacenter durability and availability by dropping ACID for BASE. I suspect that most data by volume belongs in a B…
-
comment
Comment #1472900
kbd+ is a column store (analytic database) and does not partition horizontally. The two things they have in common is that they are both in memory (and kdb+ not necessarily) and su…
-
comment
Comment #1383449
Redis does not support partitioning so it is even more apples to oranges then VoltDB vs. Cassandra. Both VoltDB and Cassandra rely on adding nodes to scale.
-
comment
Comment #1383408
VoltDB replicates synchronously.
-
comment
Comment #1383407
MongoDB partitioning support is still under development. Probably more apple to oranges then VoltDB vs. Cassandra.
-
comment
Comment #1381668
http://wiki.apache.org/cassandra/Durability "Cassandra's example configuration shows CommitLogSync set to periodic, meaning that we sync the commitlog every CommitLogSyncPeriodInMS…
-
comment
Comment #1381606
"Cassandra writes to disk. VoltDB is an in-memory database. So I gave both systems plenty of RAM to hold the data set and turned Cassandra's consistency settings pretty low." So in…