forked from GNUsocial/gnu-social
		
	
		
			
	
	
		
			18 lines
		
	
	
		
			302 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			18 lines
		
	
	
		
			302 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| 
								 | 
							
								The DiskCache plugin implements cache interface with disk files.
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								Installation
							 | 
						||
| 
								 | 
							
								============
							 | 
						||
| 
								 | 
							
								add "addPlugin('DiskCache');"
							 | 
						||
| 
								 | 
							
								to the bottom of your config.php
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								Settings
							 | 
						||
| 
								 | 
							
								========
							 | 
						||
| 
								 | 
							
								root: Directory where to save cache data. Default /tmp
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								Example
							 | 
						||
| 
								 | 
							
								=======
							 | 
						||
| 
								 | 
							
								addPlugin('DiskCache', array(
							 | 
						||
| 
								 | 
							
								    'root' => '/tmp'
							 | 
						||
| 
								 | 
							
								));
							 | 
						||
| 
								 | 
							
								
							 |