Roxen.git/
server/
base_server/
configuration.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2008-02-28
2008-02-28 19:38:05 by Jonas Wallden <jonasw@roxen.com>
875bf9e72ec3860c8f17f0709cf59190de675dde (
7
lines) (+
4
/-
3
)
[
Show
|
Annotate
]
Branch:
5.2
Increase default protocol cache size.
Rev: server/base_server/configuration.pike:1.646
5:
// @appears Configuration //! A site's main configuration
-
constant cvs_version = "$Id: configuration.pike,v 1.
645
2008/
01
/
10
15
:
35
:
50
jonasw Exp $";
+
constant cvs_version = "$Id: configuration.pike,v 1.
646
2008/
02
/
28
19
:
38
:
05
jonasw Exp $";
#include <module.h> #include <module_constants.h> #include <roxen.h>
4289:
roxen.add_permission( "Site:"+name, LOC_C(306,"Site")+": "+name ); // for now only these two. In the future there might be more variables.
-
defvar( "data_cache_size",
16384
, DLOCALE(274, "Cache:Cache size"),
+
defvar( "data_cache_size",
131072
, DLOCALE(274, "Cache:Cache size"),
TYPE_INT| VAR_PUBLIC, DLOCALE(275, "The size of the data cache used to speed up requests " "for commonly requested files, in KBytes"));
-
defvar( "data_cache_file_max_size",
100
, DLOCALE(276, "Cache:Max file size"),
+
defvar( "data_cache_file_max_size",
256
, DLOCALE(276, "Cache:Max file size"),
TYPE_INT | VAR_PUBLIC, DLOCALE(277, "The maximum size of a file that is to be considered for " "the cache, in KBytes."));