summary refs log tree commit diff
path: root/synapse/storage/schema/delta/38 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* move search reindex to schema 47Richard van der Hoff2018-02-131-1/+1
| | | | | | | | | | | | We're up to schema v47 on develop now, so this will have to go in there to have an effect. This might cause an error if somebody has already run it in the v46 guise, and runs it again in the v47 guise, because it will cause a duplicate entry in the bbackground_updates table. On the other hand, the entry is removed once it is complete, and it is unlikely that anyone other than matrix.org has run it on v46. The update itself is harmless to re-run because it deliberately copes with the index already existing.
* fix GIST->GIN switchMatthew Hodgson2018-01-091-2/+4
|
* Replace postgres GIN with GISTErik Johnston2016-11-031-0/+17
This is because GIN can be slow to write too, especially when the table gets large.