// All users called Alice or Charlie// with an age greater than 24constitems=awaitmany(userTable, { where: { name: { in: ['Alice', 'Charlie'] }, age: { gt: 24 } },});
blinkDB ⚡(0.031ms)
JS Map()
(3.053ms)
lokijs
(4.803ms)
above query for 100.000 items
blinkDB
is a in-memory database optimized for
large-scale storage
on the frontend
- with full support for indexes,
queries, and both
unstructured &
relational data.