2019-10-01 23:42:35 +02:00
|
|
|
#!/usr/bin/env python3
|
2015-09-28 19:57:40 +02:00
|
|
|
|
2019-10-01 23:42:35 +02:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
BASE_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), "../..")
|
|
|
|
sys.path.append(BASE_DIR)
|
|
|
|
|
|
|
|
import scripts.lib.setup_path_on_import
|
|
|
|
from zproject import settings
|
2020-01-02 22:56:33 +01:00
|
|
|
import pylibmc
|
2019-10-01 23:42:35 +02:00
|
|
|
|
2020-01-02 22:56:33 +01:00
|
|
|
pylibmc.Client(
|
2020-01-14 03:03:14 +01:00
|
|
|
[settings.MEMCACHED_LOCATION],
|
|
|
|
behaviors=settings.CACHES["default"]["OPTIONS"] # type: ignore # settings not typed properly
|
2020-01-02 22:56:33 +01:00
|
|
|
).flush_all()
|