TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: Indexed, relational JSON store for Node.js using flat files and LevelDB

2 pointsby aravindetover 11 years ago

1 comment

aravindetover 11 years ago
About the use of flat files to store the actual JSON: Each object is stored with multiple keys in general, and LevelDB has no native support for values with multiple keys. I considered duplicating the objects, or having a "primary" key (say the ID) that all other keys would resolve to, but finally settled on an external data file and storing the file reference and byte offset in LevelDB.