Generally, try to limit the data you search over as early as possible. In your case, instead of
index=test | where Value>=95
you do
index=test Value>=95
This will speed up your searches a lot, because splunk has to fetch a lot less events from disk.
... View more