You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.
Benchmark how long it takes to execute selectCategories with code compiled with -O on the official database.
Benchmark how long it takes to do updateCategory id on the biggest category with code compiled with -O on the official database.
Based on the latter two points we can decide whether we need any fine-grained select/update functions or whether we can get away with simply reading and writing everything all the time.
The text was updated successfully, but these errors were encountered:
Tables (categories, items, traits) should be compressed into a single
categories
table:selectCategories
,selectCategory
,insertCategory
,updateCategory
.selectCategories
with code compiled with-O
on the official database.updateCategory id
on the biggest category with code compiled with-O
on the official database.Based on the latter two points we can decide whether we need any fine-grained select/update functions or whether we can get away with simply reading and writing everything all the time.
The text was updated successfully, but these errors were encountered: