root/trunk/system/config/cache_memcache.php

Revision 3326, 268 bytes (checked in by Shadowhand, 2 months ago)

Core cleanup:

  • Removed SYSPATH check from all files
  • Changed copyrights to 2007-2008 where they had not been updated
  • Started to add @example doc comments
  • Property svn:eol-style set to LF
  • Property copyright set to Copyright (c) 2007-2008 Kohana Team
  • Property svn:keywords set to Id
Line 
1<?php
2/**
3 * @package  Cache:Memcache
4 *
5 * memcache server configuration.
6 */
7$config['servers'] = array
8(
9    array
10    (
11        'host' => '127.0.0.1',
12        'port' => 11211,
13        'persistent' => FALSE,
14    )
15);
16
17/**
18 * Enable cache data compression.
19 */
20$config['compression'] = FALSE;
Note: See TracBrowser for help on using the browser.