##// END OF EJS Templates
caches: use individual namespaces per user to prevent beaker caching problems....
caches: use individual namespaces per user to prevent beaker caching problems. - especially for mysql in case large number of data in caches there could be critical errors storing cache, and thus preventing users from authentication. This is caused by the fact that we used single namespace for ALL users. It means it grew as number of users grew reaching mysql single column limit. This changes the behaviour and now we use namespace per-user it means that each user-id will have it's own cache namespace fragmenting maximum column data to a single user cache. Which we should never reach.

File last commit:

r1842:bebe93bc default
r2591:36829a17 stable
Show More
MANIFEST.in
54 lines | 1.0 KiB | text/plain | TextLexer
# top level files
include MANIFEST.in
include README.rst
include CHANGES.rst
include LICENSE.txt
include rhodecode/VERSION
# docs
recursive-include docs *
# all config files
recursive-include configs *
# translations
recursive-include rhodecode/i18n *
# hook templates
recursive-include rhodecode/config/hook_templates *
# non-python core stuff
recursive-include rhodecode *.cfg
recursive-include rhodecode *.json
recursive-include rhodecode *.ini_tmpl
recursive-include rhodecode *.sh
recursive-include rhodecode *.mako
# 502 page
include rhodecode/public/502.html
# images, css
include rhodecode/public/css/*.css
include rhodecode/public/images/*.*
include rhodecode/public/images/ee_features/*.*
# sound files
include rhodecode/public/sounds/*.mp3
include rhodecode/public/sounds/*.wav
# fonts
recursive-include rhodecode/public/fonts/ProximaNova *
recursive-include rhodecode/public/fonts/RCIcons *
# js
recursive-include rhodecode/public/js *
# templates
recursive-include rhodecode/templates *
# skip any tests files
recursive-exclude rhodecode/tests *