I'm using the SilverStripe CMS/MVC Framework. My coder says that Pagination must be done with Javascript (instead of PHP) in this Framework. But now I'm a bit worried about scalability. If I understand correctly, this means that all the results are loaded at once (via php), and javascript is used to paginate these, so you only see 10 or some limited amount until you click the 'next' arrow. Works fine with the current 40 records for testing. But if there are 1,000 records in the database, or 100,000, and these all had to be preloaded before you could see even the first page of 10, then wouldn't this really slow things down? At what number of records might one start to see this slowdown? Any suggestions/ideas..?
Making Pagination in Javascript Scalable (for large # of db results)
256 Views Asked by user2671645 At
2
There are 2 best solutions below
0
jfbarrois
On
Pagination is out of the box with SilverStripe See an example+tutorial here : http://doc.silverstripe.com/framework/en/howto/pagination
Related Questions in JAVASCRIPT
- Angular Show All When No Filter Is Supplied
- Why does a function show up as not defined
- I count the time the user takes to solve my quiz using Javascript but I want the same time displayed on another page
- Set "More" "Less" font size
- Using pagination on a table in AngularJS
- How to sort these using Javascript or Jquery Most effectively
- how to fill out the table with next values in array with one button
- State with different subviews
- Ajax jQuery firing multiple time display event for the same result
- Getting and passing MVC Model data to AngularJS controller
- Disable variable in eval
- javascript nested loops waiting for user input
- .hover() seems to overwrite .click()
- How to sort a multi-dimensional array by the second array in descending order?
- How do I find the fonts that are not loading in a CORS situation ( MoovWeb )?
Related Questions in PAGINATION
- Using pagination on a table in AngularJS
- PFQueryTableViewController pagination doesn't work with heightForRowAtIndexPath
- yii 2 pagination is losing filter data in the model
- How to show variable in view blade.php page using laravel paginator::make
- How i can get the numbers on the left and the right of the given element?
- Pagination in Yii framework doesn't work correctly
- Add paging buttons to gridview pagersetting set to Numeric
- More efficient way of paginating in Django
- Wrong pagination link count laravel
- AWS s3 listobjects with pagination
- Wordpress: Error 404 with pagination in custom taxonomy in home
- WP : Custom Post Type pagination by cats Issue
- Mnesia pagination with fragmented table
- Why does Instagram's pagination return the same page over and over?
- how to use Where condition in Pagination using cakephp
Related Questions in SILVERSTRIPE
- SilverStripe - Multilingual Custom Form Template
- SilverStripe TInyMCE configuration requires a refresh to take effect
- Extend RequiredFields class and call it in another class in SilverStripe
- Automatically switch to a read-only database when the master database is unavailable
- How to use GridList of one page into home page in shortcode in SilverStripe
- SilverStripe 3: Loop greatgrandchildren pages WITH OUT grouping by parent
- How to sort and filter children in Silverstripe
- SilverStripe 'None of these templates can be found in theme 'default'
- rewrite url and redirect to extended page in silverstripe
- Silverstripe PaginatedList - How to display record numbers on current page?
- Can I override a composer.json dependency to remove it?
- SilverStripe 3: UserForms integrate with MailChimp?
- How to find /mysite/ folder - SilverStripe CMS
- SilverStripe Swipestripe - swipestripe-gallery module error
- Only allow access to a file if logged in to the CMS [SilverStripe]
Related Questions in SCALABLE
- Retrieve google news through Google CSE Api
- Procedurally generated GUI
- responsive css table with multiple scalable images in multiple rows
- My SVG's are consistently rendering 'smaller' than they should be
- CSS or jQuery scalable background image with NO white space underneath when img height is less than window height
- RabbitMQ in scalable nodejs Apps, How make a build well scalable app?
- Scaling WPF user interface to fit screen, without distorting font aspect ratio
- Scalable approach to make values in a list as column values in a dataframe in pandas in Python
- SQL Server load balancing optimizing Hits or Optimize the query
- Scalable Video Coding, can layers be enhanced using svc for a mobile device?
- Creating a scalable Image button in iOS. Without a blurry image.
- How ordering is maintained for multiple instance of the same same subscription in GCP Pub Sub
- PHP: Most Efficient Way to Track if a User is Online?
- Python scalable chat server
- Designing a scalable backend system that triggers events based on time values
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It depends, but it will slow down. Can be at 500 records, or 5000. If the server-side framework doesn't support pagination, implement it yourself. You can use Ajax on the client side for a smoother user experience when switching pages.