Skip to content
Snippets Groups Projects
Commit fe979470 authored by Erik Johnston's avatar Erik Johnston
Browse files

Intern type and state_key on events

parent 75daede9
No related branches found
No related tags found
No related merge requests found
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
# limitations under the License. # limitations under the License.
from synapse.util.frozenutils import freeze from synapse.util.frozenutils import freeze
from synapse.util.caches import intern_string
# Whether we should use frozen_dict in FrozenEvent. Using frozen_dicts prevents # Whether we should use frozen_dict in FrozenEvent. Using frozen_dicts prevents
...@@ -140,6 +141,12 @@ class FrozenEvent(EventBase): ...@@ -140,6 +141,12 @@ class FrozenEvent(EventBase):
unsigned = dict(event_dict.pop("unsigned", {})) unsigned = dict(event_dict.pop("unsigned", {}))
# We intern these strings because they turn up a lot (especially when
# caching).
event_dict["type"] = intern_string(event_dict["type"])
if "state_key" in event_dict:
event_dict["state_key"] = intern_string(event_dict["state_key"])
if USE_FROZEN_DICTS: if USE_FROZEN_DICTS:
frozen_dict = freeze(event_dict) frozen_dict = freeze(event_dict)
else: else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment