blob: 292803d86474046cb5a671c3f3bc954e1f2f11a6 [file] [log] [blame]
ddkilzer@apple.com8040bb02017-03-21 16:27:49 +00001# 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
8package Bugzilla::Config::Memcached;
9
10use 5.10.1;
11use strict;
12use warnings;
13
14use Bugzilla::Config::Common;
15
16our $sortkey = 1550;
17
18sub 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
331;