Skip Navigation

[Resolved] how do searchable views perform when there are 1,000+ records?

This support ticket is created 3 years, 11 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
- 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10: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/Kolkata (GMT+05:30)

This topic contains 2 replies, has 2 voices.

Last updated by robertF-7 3 years, 11 months ago.

Assisted by: Minesh.

Author
Posts
#1954705

Tell us what you are trying to do?

I am building a site that will be based on a custom post type with 20 fields and we are expecting at least a 1,000 records submiited by members - the search section will have 9 criteria - a mix of select drop downs , text and checkbox fields

will the searchable view handle this ok?

what is the performance like on larger data sets?

#1955401

Minesh
Supporter

Languages: English (English )

Timezone: Asia/Kolkata (GMT+05:30)

Hello. Thank you for contacting the Toolset support.

The thing is that as many frontend filters you will add to your view, it will have impact on performance. As at the end we will require to display filters with all required values and values will be fetched from database and hence it will have impact on performance when you add more and more filters.

You should not display all 1000 posts at once as thats not a feasible solution, even if you exclude Toolset and try to display 1000 posts with WordPress it will fail to load or take too much time to load the page as to display 1000 posts on single page is too much.

The solution to this is you should try to add pagination to your view so at a time display 10-20 posts per page.
=> https://toolset.com/course-lesson/creating-a-view/#add-pagination-to-a-view

#1956927

My issue is resolved now. Thank you!

The filters are loading quickly right now and the performance is good with a limited data result set.

Of course - i will use pagination

I will create some test data to give it a workout and see how it handles the increased volumes