Home > Net >  Large number of database access
Large number of database access

Time:02-24

, please access the database, the data quantity has more than one million data, how to improve the access speed

CodePudding user response:

Paging query

CodePudding user response:

Paging (reduce a single request and redundant data IO), cache (reduce IO, increase response)
The two ready should be able to meet the demand of most

CodePudding user response:

Query field with index
  • Related