-
Notifications
You must be signed in to change notification settings - Fork 227
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why is get_raw_records called three times? #367
Comments
exactly See https://github.com/jbox-web/ajax-datatables-rails/blob/master/lib/ajax-datatables-rails/base.rb#L32 |
Is there a way to bypass the additional calls cleanly by any chance? I have the data exactly how I need it on the first fetch. Thanks for the gem it's kept things a lot cleaner. The main issue is that I call elasticsearch on AWS in get_raw_records so calling it 3 times slows things down considerably. I'm wondering if get_raw_records should only be the initial models & joins and then the |
@kunzig940, any update on this please? having the same issue. |
@kunzig940 or @NeimadTL where you able to solve it? |
When debugging, get_raw_records is called three times. How can I bypass such behavior? For example the logs show:
Logs:
If I return zero User records (i.e.
User.none
) it is only called twice so I'm assuming it's something to do with sorting/filtering in the background.The text was updated successfully, but these errors were encountered: