google_forms/application/config/memcached.php

21 lines
525 B
PHP
Raw Permalink Normal View History

2024-07-10 12:37:36 +00:00
<?php
2024-08-09 12:04:48 +00:00
defined('BASEPATH') or exit('No direct script access allowed');
2024-07-10 12:37:36 +00:00
/*
| -------------------------------------------------------------------------
| Memcached settings
| -------------------------------------------------------------------------
| Your Memcached servers can be specified below.
|
2024-08-09 12:04:48 +00:00
| See: https://codeigniter.com/userguide3/libraries/caching.html#memcached
2024-07-10 12:37:36 +00:00
|
*/
$config = array(
2024-08-09 12:04:48 +00:00
'default' => array(
'hostname' => '127.0.0.1',
'port' => '11211',
'weight' => '1',
),
2024-07-10 12:37:36 +00:00
);