Seafile server 6.2.3 is ready! OAuth support and other improvements

Hi,
I have isolated it a bit more for you, it seem that the “new” way of writing cache config in seahub_settings.py don’t work with 6.2 Pro or 6.2.3 CE, you need to write it in the old way.
Se in the bottom of this thread:

That’s not any good I guess as the new way to write is the right way to call memcached if I’m understand it correctly.

Old way that works in 6.2 Pro and 6.2.3:

> CACHES = {
> 'default': {
> 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
>
> # 'BACKEND': 'django_pylibmc.memcached.PyLibMCCache',
> 'LOCATION': 'unix:/var/run/memcached.sock',
> }
> }

@daniel.pan