mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
2350aa54eb
Some performance issues added as well. |
||
---|---|---|
.. | ||
friendica-to-smarty-tpl.py | ||
readme.txt | ||
sample-nginx.config | ||
updatetpl.py |
Site speed can be improved when the following indexes are set. They cannot be set through the update script because on large sites they will block the site for several minutes. CREATE INDEX `uid_commented` ON `item` (`uid`, `commented`); CREATE INDEX `uid_created` ON `item` (`uid`, `created`); CREATE INDEX `uid_unseen` ON `item` (`uid`, `unseen`); CREATE INDEX `resource-id` ON `item` (`resource-id`);