mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			410 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			410 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env python3
 | 
						|
import os
 | 
						|
import sys
 | 
						|
 | 
						|
BASE_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), "../..")
 | 
						|
sys.path.append(BASE_DIR)
 | 
						|
 | 
						|
from scripts.lib.setup_path import setup_path
 | 
						|
 | 
						|
setup_path()
 | 
						|
 | 
						|
import bmemcached
 | 
						|
 | 
						|
from zproject import settings
 | 
						|
 | 
						|
cache = settings.CACHES["default"]
 | 
						|
assert isinstance(cache, dict)  # for mypy
 | 
						|
bmemcached.Client((cache["LOCATION"],), **cache["OPTIONS"]).flush_all()
 |