I’d like to use the sub query optimization discussed under Common subtree optimization in the Manticore documentation on Multi-queries, but I can’t seem to get any query to use a subtree unless they are identical.
I’ve tried setting subtree_hits_cache and subtree_docs_cache to 64MB, but that doesn’t seem to help. Are there any other required settings, or something else I’m missing? Thanks!
Example queries through PHP PDO query:
conn 79 real 0.008 wall 0.006 found 59863 */ SELECT * FROM addresses_en_us WHERE MATCH(‘@(city) braunfels’) LIMIT 0,1;
conn 79 real 0.008 wall 0.012 found 59863 */ SELECT * FROM addresses_en_us WHERE MATCH(‘@(city) new braunfels’) LIMIT 0,1;
conn 80 real 0.005 wall 0.005 x2 found 59863 */ SELECT * FROM addresses_en_us WHERE MATCH(‘@(city) new braunfels’) LIMIT 0,1;
conn 80 real 0.005 wall 0.005 x2 found 59863 */ SELECT * FROM addresses_en_us WHERE MATCH(‘@(city) new braunfels’) LIMIT 0,1;