when I use client.search(query: search_param, :reload => true) I get real data (not cached) after 2 mins.
Is there anyway I get the search results immediately, I mean by completely avoiding cache.
Currently I use reload: true & fetch(true) on search results. This helps me get the latest data after 2 mins.
Is there anyway I can avoid waiting 2 mins, so that I get the immediate proper search result.
when I use
client.search(query: search_param, :reload => true)
I get real data (not cached) after 2 mins. Is there anyway I get the search results immediately, I mean by completely avoiding cache.Currently I use reload: true & fetch(true) on search results. This helps me get the latest data after 2 mins.
Is there anyway I can avoid waiting 2 mins, so that I get the immediate proper search result.
Thanks in advance!