mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-11 12:31:58 +01:00
Fix up comments
This commit is contained in:
parent
4ba55559ac
commit
d7d8a2e7ee
2 changed files with 3 additions and 3 deletions
|
@ -647,7 +647,7 @@ caches:
|
||||||
# alphanumeric or underscores. These caches can be named with or
|
# alphanumeric or underscores. These caches can be named with or
|
||||||
# without the special characters stripped. For example, to specify
|
# without the special characters stripped. For example, to specify
|
||||||
# the cache factor for `*stateGroupCache*` via an environment
|
# the cache factor for `*stateGroupCache*` via an environment
|
||||||
# variable would be `SYNAPSE_CACHE_FACTOR_STATEGROUPCACHE=2`.
|
# variable would be `SYNAPSE_CACHE_FACTOR_STATEGROUPCACHE=2.0`.
|
||||||
#
|
#
|
||||||
per_cache_factors:
|
per_cache_factors:
|
||||||
#get_users_who_share_room_with_user: 2.0
|
#get_users_who_share_room_with_user: 2.0
|
||||||
|
|
|
@ -46,7 +46,7 @@ def _canonicalise_cache_name(cache_name: str) -> str:
|
||||||
|
|
||||||
Since we specify cache names in config and environment variables we need to
|
Since we specify cache names in config and environment variables we need to
|
||||||
ignore case and special characters. For example, some caches have asterisks
|
ignore case and special characters. For example, some caches have asterisks
|
||||||
in their name to donate that they're not attached to a particular database
|
in their name to denote that they're not attached to a particular database
|
||||||
function, and these asterisks need to be stripped out
|
function, and these asterisks need to be stripped out
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -130,7 +130,7 @@ class CacheConfig(Config):
|
||||||
# alphanumeric or underscores. These caches can be named with or
|
# alphanumeric or underscores. These caches can be named with or
|
||||||
# without the special characters stripped. For example, to specify
|
# without the special characters stripped. For example, to specify
|
||||||
# the cache factor for `*stateGroupCache*` via an environment
|
# the cache factor for `*stateGroupCache*` via an environment
|
||||||
# variable would be `SYNAPSE_CACHE_FACTOR_STATEGROUPCACHE=2`.
|
# variable would be `SYNAPSE_CACHE_FACTOR_STATEGROUPCACHE=2.0`.
|
||||||
#
|
#
|
||||||
per_cache_factors:
|
per_cache_factors:
|
||||||
#get_users_who_share_room_with_user: 2.0
|
#get_users_who_share_room_with_user: 2.0
|
||||||
|
|
Loading…
Reference in a new issue