bjerun | 8 years ago | on: Sorting number strings numerically
bjerun's comments
bjerun | 11 years ago | on: Creating multi-game highscore lists in ArangoDB
bjerun | 11 years ago | on: Modeling Data in MongoDB vs. ArangoDB
However, MongoDB often uses a lot of memory for the actual data, since its BSON binary format stores the names of the attributes with every single document. ArangoDB detects similar shapes of documents (see https://www.arangodb.com/faq#how-do-shapes-work-in-arangodb) and thus avoids this particular problem.
bjerun | 11 years ago | on: Learning on the Edge
bjerun | 11 years ago | on: Evernote style open source tool with end2end encryption
bjerun | 11 years ago | on: A Graph Processing System (2011)
bjerun | 11 years ago | on: A Graph Processing System (2011)
bjerun | 12 years ago | on: Google DNS servers suffer brief traffic hijack
bjerun | 12 years ago | on: Github is Down
bjerun | 12 years ago | on: Your Favorite Programming Language Sucks
bjerun | 12 years ago | on: What Are Your GCC Flags?
bjerun | 12 years ago | on: What Are Your GCC Flags?
-Wl,-O1 Did you know that you also have an optimization flag for the linker ? Now you know!
Ages ago the linker on SUN used to compile templates. What is GCC doing/using this flag for?bjerun | 12 years ago | on: ArangoDB
bjerun | 12 years ago | on: ArangoDB
With respect to corruption ArangoDB behaves similar: It uses an append-only log file with CRC checksums. So, if the last bit of storage contains corrupt data, it is discarded.
bjerun | 12 years ago | on: ArangoDB
bjerun | 12 years ago | on: ArangoDB
- some access control (e. g. sessions) - compute some fields (e. g. "age" derived from "birthday") - combine and filter data before transfering it the client (e. g. for graph traversals)