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 was archived by the owner on Sep 12, 2018. It is now read-only.
Right now, <avs does a bunch of selects against all_datoms. It's super slow, since it's extremely inefficient to queryall_datoms for a textual match. This ticket tracks doing something less significant than #69 to speed this up. Namely:
only query from all_datoms for fulltext attributes;
consider using a temporary table and one big query rather than many small queries.
The text was updated successfully, but these errors were encountered:
Right now,
<avs
does a bunch of selects againstall_datoms
. It's super slow, since it's extremely inefficient to queryall_datoms
for a textual match. This ticket tracks doing something less significant than #69 to speed this up. Namely:all_datoms
for fulltext attributes;The text was updated successfully, but these errors were encountered: