Skip Navigation

[Resolved] speed up get parameters search broker profiles

This support ticket is created 3 years, 4 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Hong_Kong (GMT+08:00)

This topic contains 1 reply, has 2 voices.

Last updated by Luo Yang 3 years, 4 months ago.

Assisted by: Luo Yang.

Author
Posts
#2150095

Tell us what you are trying to do?
If you proceed on selecting filters on hidden link -- and go through popup1 and popup 2 after clicking next,

a parameter query string is generated to show different broker profiles
But speed is very bad -- i wanted to understand if i can implement this differently to achieve best speed results with cache.

hidden link

Is there any documentation that you are following?

Is there a similar example that we can see?

What is the link to your site?
hidden link -- this the eventual page which comes through the wizard on comparebroker.io -- i want to implement this with your help in a more better and speed manner

#2150351
loading-time.JPG

Hello,

Toolset Views/Blocks plugins do have built-in cache feature, see our blog post:
https://toolset.com/2019/05/toolset-views-2-8-1-with-performance-improvements/

The cache feature is enabled by default, unless you disable it manually:
https://toolset.com/documentation/programmer-reference/views/views-shortcodes/#wpv-view
attributes:
cached (opt): off

And there are certain conditions, which will force the view to not use the cached version, for example:

- if the view is using front-end sorting controls
- If the view contains a query filter that listens to the URL parameter
- if the view contains a nested view or a content template
- if the view is set to show posts in a random order
- if the view contains the "conditional" block

Since you are using URL parameter to filter the view, so the results won't be cached.

And I have tried the URL you mentioned above:
hidden link

The document loading time is about 2 seconds, see my screenshot loading-time.JPG, it is reasonable result in a website using some other plugins and a custom theme.