Database of Databases
dbdb.io
Database of Databases
1–10 of 65 posts
Re: Database of Databases
#2[deleted]
Re: Database of Databases
#3Reminds me of my favorite Wikipedia article: https://en.wikipedia.org/wiki/List_of_lists_of_lists
Re: Database of Databases
#4Well I guess that answers it, SQLite is the database of all databases.
> https://github.com/cmu-db/dbdb.io/blob/master/dbdb/settings....
Re: Database of Databases
#5Writing a simple query engine can be accomplished with a trie and a hash map to be a bit like Dynamo DB and SQL is straightforward to parse (but a pain to implement).
https://github.com/samsquire/hash-db https://github.com/samsquire/sql-database
These are my very straightforward codebases where I've been experimenting with SQL parsing (and execution) and dynamo db style querying.
You need an efficient range operator to implement a database.
Re: Database of Databases
#6Reminds me of my favorite Wikipedia article: https://en.wikipedia.org/wiki/List_of_lists_of_lists
My god that is a rabbit hole. Thanks for this! (But there goes my evening..)
Re: Database of Databases
#7Are these websites just completely unable to handle a 1000 simultaneous requests?
Re: Database of Databases
#8Are these websites just completely unable to handle a 1000 simultaneous requests?
They should have used a JSON file as the backend.
Re: Database of Databases
#9They're using SQLite which is single threaded and single user by design. So this website will not be able to service that much traffic.
Re: Database of Databases
#10They're using SQLite which is single threaded and single user by design. So this website will not be able to service that much traffic.
Should be fine for reads. Sqlite.org is dynamic, pulling from sqlite data for ~20% of the pages, and it does fine with HN piling on. The single threaded would be an issue for writes, but I don't see why they would be doing writes for a page view. See https://www.sqlite.org/whentouse.html