| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-24 00:26:39 +08:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Caching configuration options. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Changes to these config files are not supported by BookStack and may break upon updates. | 
					
						
							|  |  |  |  * Configuration should be altered via the `.env` file or environment variables. | 
					
						
							|  |  |  |  * Do not edit this file unless you're happy to maintain any changes yourself. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-05 17:47:24 +08:00
										 |  |  | // MEMCACHED - Split out configuration into an array
 | 
					
						
							|  |  |  | if (env('CACHE_DRIVER') === 'memcached') { | 
					
						
							|  |  |  |     $memcachedServerKeys = ['host', 'port', 'weight']; | 
					
						
							|  |  |  |     $memcachedServers = explode(',', trim(env('MEMCACHED_SERVERS', '127.0.0.1:11211:100'), ',')); | 
					
						
							|  |  |  |     foreach ($memcachedServers as $index => $memcachedServer) { | 
					
						
							|  |  |  |         $memcachedServerDetails = explode(':', $memcachedServer); | 
					
						
							| 
									
										
										
										
											2019-09-16 01:29:51 +08:00
										 |  |  |         if (count($memcachedServerDetails) < 2) { | 
					
						
							|  |  |  |             $memcachedServerDetails[] = '11211'; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (count($memcachedServerDetails) < 3) { | 
					
						
							|  |  |  |             $memcachedServerDetails[] = '100'; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-03-05 17:47:24 +08:00
										 |  |  |         $memcachedServers[$index] = array_combine($memcachedServerKeys, $memcachedServerDetails); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | return [ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-24 00:26:39 +08:00
										 |  |  |     // Default cache store to use
 | 
					
						
							|  |  |  |     // Can be overridden at cache call-time
 | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |     'default' => env('CACHE_DRIVER', 'file'), | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-24 00:26:39 +08:00
										 |  |  |     // Available caches stores
 | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |     'stores' => [ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         'apc' => [ | 
					
						
							|  |  |  |             'driver' => 'apc', | 
					
						
							|  |  |  |         ], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         'array' => [ | 
					
						
							|  |  |  |             'driver' => 'array', | 
					
						
							|  |  |  |         ], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         'database' => [ | 
					
						
							|  |  |  |             'driver' => 'database', | 
					
						
							|  |  |  |             'table'  => 'cache', | 
					
						
							|  |  |  |             'connection' => null, | 
					
						
							|  |  |  |         ], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         'file' => [ | 
					
						
							|  |  |  |             'driver' => 'file', | 
					
						
							|  |  |  |             'path'   => storage_path('framework/cache'), | 
					
						
							|  |  |  |         ], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         'memcached' => [ | 
					
						
							|  |  |  |             'driver'  => 'memcached', | 
					
						
							| 
									
										
										
										
											2016-03-05 17:47:24 +08:00
										 |  |  |             'servers' => env('CACHE_DRIVER') === 'memcached' ? $memcachedServers : [], | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |         ], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         'redis' => [ | 
					
						
							|  |  |  |             'driver' => 'redis', | 
					
						
							|  |  |  |             'connection' => 'default', | 
					
						
							|  |  |  |         ], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-24 00:26:39 +08:00
										 |  |  |     // Cache key prefix
 | 
					
						
							|  |  |  |     // Used to prevent collisions in shared cache systems.
 | 
					
						
							| 
									
										
										
										
											2019-09-07 06:36:16 +08:00
										 |  |  |     'prefix' => env('CACHE_PREFIX', 'bookstack_cache'), | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | ]; |