Any suggestion for speeding up a query that uses R...
# troubleshooting
a
Any suggestion for speeding up a query that uses REGEX_LIKE to filter on a dimension? I see string operations being super slow. Even if I rewrite my regex as
SUBSTR(foo, ..., ...) = bar
I still see the query taking more than 10 seconds
m
Have you tried text index?
a
Does it play nice with star tree index?
(To be more precise, I want my query to be accelerated by the use of the star tree index, and I also want to quickly filter by regex for one of the dimensions)
m
Should work
a
Ok, that's really neat
How can a text index accelerate a regex to be faster than table scan?
m
It leverages lucene index internally
a
Cool