I read that the default PAGE_SIZE value of 1024 in SQLite has been chosen merely for compatiblity between different platforms and operatings systems.

Since my app runs only on Windows systems, would it be safe to increase it to a larger value (like 4096) or could it have any unwanted side-effects?

link|improve this question

74% accept rate
feedback

1 Answer

up vote 1 down vote accepted

The only drawback is that an ill-adjusted page-size could make your database slower. Ultimately, page_size optimization will depend on four factors:

  • platform
  • schema
  • data
  • queries (i.e. usage)

Test and compare, that's the only way.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.