mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-31 20:13:46 +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()
 |