mirror of https://github.com/pixelfed/pixelfed
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			18 lines
		
	
	
		
			358 B
		
	
	
	
		
			PHP
		
	
			
		
		
	
	
			18 lines
		
	
	
		
			358 B
		
	
	
	
		
			PHP
		
	
<?php
 | 
						|
 | 
						|
return [
 | 
						|
 | 
						|
    // Enable or disable partialcache alltogether
 | 
						|
    'enabled' => true,
 | 
						|
 | 
						|
    // The name of the blade directive to register
 | 
						|
    'directive' => 'cache',
 | 
						|
 | 
						|
    // The base key that used for cache items
 | 
						|
    'key' => 'partialcache',
 | 
						|
 | 
						|
    // The default cache duration in minutes, set null to remember forever
 | 
						|
    'default_duration' => null,
 | 
						|
 | 
						|
];
 |