This is a database of game engines, probably should change the title; very misleading otherwise. The website title itself is "Engines Database".
I was hoping for a greater formalization of ECS as a domain-specific database.
ECS to me is a subset of the binary relational data model & first order logic. Or at least expressible entirely in those terms.

An in-memory system optimized high performance munging of such relations, with super optimized joins etc. would be invaluable I think in game dev (or anywhere else seeking to declare and manage complex relationships in real time). Basically... Datalog for games... on a tick clock

But from what I've seen game developers often re-invent the wheel, or formulate things in very specific terms for performance reasons.

I do think Tim Sweeny is sorta grasping at bringing some DB concepts into games when he talks about bringing e.g. software transactional memory (STM) to game dev.

Fwiw my colleague is the author of https://github.com/wotbrew/relic and he started working on Incremental View Maintenance ~purely because he wants to build a simpler rogue-like :)