cache.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Cache Driver
  6. |--------------------------------------------------------------------------
  7. |
  8. | The name of the default cache driver for your application.
  9. |
  10. | Caching can be used to increase the performance of your application
  11. | by storing commonly accessed data in memory or in a file.
  12. |
  13. | Supported Drivers: 'file', 'memcached'.
  14. |
  15. */
  16. 'driver' => 'file',
  17. /*
  18. |--------------------------------------------------------------------------
  19. | Memcached Servers
  20. |--------------------------------------------------------------------------
  21. |
  22. | Here you can define the Memcached servers used by your application.
  23. |
  24. | Memcached is a free and open source, high-performance, distributed memory
  25. | object caching system, generic in nature, but intended for use in speeding
  26. | up dynamic web applications by alleviating database load.
  27. |
  28. | For more information about Memcached, check out: http://memcached.org
  29. |
  30. */
  31. 'servers' => array(
  32. array('host' => '127.0.0.1', 'port' => 11211, 'weight' => 100),
  33. ),
  34. /*
  35. |--------------------------------------------------------------------------
  36. | Memcached Key
  37. |--------------------------------------------------------------------------
  38. |
  39. | This key will be prepended to items stored using Memcached to avoid
  40. | collisions with other applications on the server.
  41. |
  42. */
  43. 'key' => 'laravel',
  44. );