ddkilzer@apple.com | 8040bb0 | 2017-03-21 16:27:49 +0000 | [diff] [blame^] | 1 | # This Source Code Form is subject to the terms of the Mozilla Public |
| 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
| 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
| 4 | # |
| 5 | # This Source Code Form is "Incompatible With Secondary Licenses", as |
| 6 | # defined by the Mozilla Public License, v. 2.0. |
| 7 | |
| 8 | package Bugzilla::Config::Memcached; |
| 9 | |
| 10 | use 5.10.1; |
| 11 | use strict; |
| 12 | use warnings; |
| 13 | |
| 14 | use Bugzilla::Config::Common; |
| 15 | |
| 16 | our $sortkey = 1550; |
| 17 | |
| 18 | sub get_param_list { |
| 19 | return ( |
| 20 | { |
| 21 | name => 'memcached_servers', |
| 22 | type => 't', |
| 23 | default => '' |
| 24 | }, |
| 25 | { |
| 26 | name => 'memcached_namespace', |
| 27 | type => 't', |
| 28 | default => 'bugzilla:', |
| 29 | }, |
| 30 | ); |
| 31 | } |
| 32 | |
| 33 | 1; |