Backclist timeout

I am working with a backend and has about 100k records in a table. The problem is that when I load this list, ask for the time, because it takes more than 30 seconds to load, and also if it manages to load (increase in timeout), the list is not paginated, but the whole list of posts on one page ...

Has anyone ever encountered this problem and is there a way to fix this error?

+3


source to share


1 answer


It looks like you might need to enable pagination on your list. Open the config file list_config.yaml

found in your controller directory and check the box recordsPerPage

:



# ===================================
#  List Behavior Config
# ===================================

# ...

# Records to display per page
recordsPerPage: 20

      

0


source







All Articles