mastodon/app
David Yip 8fc54890e5 Prefix cache keys with the matcher type. #208.
We already know about one regex limitation, which is that they cannot
segment words in e.g. Japanese, Chinese, or Thai.  It may also end up
that regex matching is too slow compared to other methods.

However, the regex is an implementation detail.  We still want the
ability to switch between "occurs anywhere" and "match whole word", and
caching the matcher result is likely to still be important (since the
matcher itself won't change nearly as often as status ingress rate).
Therefore, we ought to be able to change the cache keys to reflect a
change of data structure.

(Old cache keys expire within minutes, so they shouldn't be too big of
an issue.  Old cache keys could also be explicitly removed by an
instance administrator.)
2017-11-15 18:12:31 -06:00
..
controllers
helpers
javascript Merge pull request #212 from aschmitz/feat/mute-reblogs 2017-11-15 12:01:17 -05:00
lib Match keyword mute filter on hashtags. #208. 2017-11-15 18:12:29 -06:00
mailers
models Prefix cache keys with the matcher type. #208. 2017-11-15 18:12:31 -06:00
policies
presenters
serializers
services
validators
views
workers