Skip to content
Mathias Rangel Wulff edited this page Jun 10, 2015 · 7 revisions

Speed - We like it fast

Thats why we make sure to use all the tricks we can find to make javascript spit out your results as quick as possible. Among other things we make sure that:

  • Queries are cached as compiled functions.
  • Joined tables are pre-indexed
  • WHERE expressions are pre-filtered for joins

But dont take our word for it. Check out AlaSQL vs other JavaScript SQL databases:

Every part must be optimized, so lets compare some cases where you would often use another library:

Clone this wiki locally