Note
Tutorial Difficulty: Varies
There are several ways to increase the performance of your store. Some ways require technical knowledge, whereas other ways are available to everyone.
In the administration panel, go to Administration → Languages → Manage languages.
Delete the languages that you do not use:
Important
For the performance to increase, you must delete the languages, not just disable them. If you need a deleted language later, you can switch to the Available tab and install it again.
Optimize the database to increase performance: that way you reclaim unused space and defragment the datafile.
Important
This requires technical knowledge.
Changing the caching type might increase performance. To do it, complete the following steps:
// Cache backend // Available backends: file, sqlite, database, redis, xcache, apc // To use sqlite cache the "sqlite3" PHP module should be installed // To use xcache cache the "xcache" PHP module should be installed // To use apc cache the "apc" PHP module should be installed $config['cache_backend'] = 'file';
file
in this line of the code:$config['cache_backend'] = 'file';with the necessary variant.
Warning
Don’t store the cache in the
database
, unless you know what you’re doing—tables with the cache often grow large and get broken.
Save the file.
Note
The file
cache backend is used by default, other available variants are: sqlite
, database
, redis
, xcache
, apc
.
To use sqlite
, the sqlite3 PHP module must be installed on your server. To use xcache
, the xcache PHP module must be installed. To use apc
cache, the apc PHP module must be installed.
Questions & Feedback
Have any questions that weren't answered here? Need help with solving a problem in your online store? Want to report a bug in our software? Find out how to contact us.