Artur Zakirov

Results 28 comments of Artur Zakirov

I suppose it is because of `(text_vector to_tsquery('english', :q)) / coefficient` expression. Can you try the query: ```sql SELECT docid, (text_vector to_tsquery('english', :q)) / coefficient as rank, count(*) over() FROM...

> Should counts match? (I might be willing to trade off count accuracy for speed. :) ) Yes, they should match. It seems that it is the bug. I will...

Yep. It should work. I work on fixing it. It is the bug too. > Should counts match? (I might be willing to trade off count accuracy for speed. :)...

Hello, @jimfulton can you test the fix? I have fixed the bug related with prefix search: > Should a prefix search (like text_vector to_tsquery('english', 'euro:*')) work?

Hello Artur, Thank you for the issue! Can you send versions of `RUM` and `PostgreSQL`? Array support was added in `1.2.0` version. And this check for NULL values within array...

Your right, fast update was removed. Current version of `RUM` doesn't support it. It was removed because when pending list becomes large updates and selects become slow. How slow are...

I believe that fast update won't help in your case. It is strange that rumHeapTupleInsert() takes 95%. Did you debug using `perf`? Can you share your Chinese text after splitting...

Index key can't have size more than 1336 bytes. It is a limitation of the current version. It is true also for GIN (it could has another limit). It seems...

We are working on this issue. And as I know there are huge urls in your strings. Are you do search by these urls? Are they important to you? If...