Skip to content
Snippets Groups Projects
  1. Aug 27, 2020
  2. Aug 26, 2020
  3. Aug 25, 2020
  4. Aug 24, 2020
  5. Aug 19, 2020
  6. Aug 18, 2020
  7. Aug 17, 2020
  8. Aug 14, 2020
  9. Aug 12, 2020
  10. Aug 11, 2020
  11. Aug 10, 2020
  12. Aug 07, 2020
  13. Aug 05, 2020
  14. Jul 30, 2020
  15. Jul 28, 2020
  16. Jul 27, 2020
  17. Jul 24, 2020
  18. Jul 22, 2020
  19. Jul 14, 2020
  20. Jul 08, 2020
  21. Jul 01, 2020
  22. Jun 12, 2020
  23. Jun 10, 2020
  24. Jun 03, 2020
  25. May 22, 2020
    • Richard van der Hoff's avatar
      Optimise some references to hs.config (#7546) · f4269694
      Richard van der Hoff authored
      These are surprisingly expensive, and we only really need to do them at startup.
      Unverified
      f4269694
    • Erik Johnston's avatar
      Add ability to wait for replication streams (#7542) · 1531b214
      Erik Johnston authored
      The idea here is that if an instance persists an event via the replication HTTP API it can return before we receive that event over replication, which can lead to races where code assumes that persisting an event immediately updates various caches (e.g. current state of the room).
      
      Most of Synapse doesn't hit such races, so we don't do the waiting automagically, instead we do so where necessary to avoid unnecessary delays. We may decide to change our minds here if it turns out there are a lot of subtle races going on.
      
      People probably want to look at this commit by commit.
      Unverified
      1531b214
  26. May 14, 2020
  27. May 13, 2020
    • Erik Johnston's avatar
      Shuffle persist event data store functions. (#7440) · 782e4e64
      Erik Johnston authored
      The aim here is to get to a stage where we have a `PersistEventStore` that holds all the write methods used during event persistence, so that we can take that class out of the `DataStore` mixin and instansiate it separately. This will allow us to instansiate it on processes other than master, while also ensuring it is only available on processes that are configured to write to events stream.
      
      This is a bit of an architectural change, where we end up with multiple classes per data store (rather than one per data store we have now). We end up having:
      
      1. Storage classes that provide high level APIs that can talk to multiple data stores.
      2. Data store modules that consist of classes that must point at the same database instance.
      3. Classes in a data store that can be instantiated on processes depending on config.
      Unverified
      782e4e64
  28. May 11, 2020
  29. May 07, 2020
  30. May 04, 2020
  31. Apr 28, 2020
Loading