Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2013-04-26 20:47:07 +0400
committerMiguel de Icaza <miguel@gnome.org>2013-04-26 20:47:07 +0400
commit675328ef1686ce884326df89f8c570943e2d20d2 (patch)
tree95ac0f9f5d3f8d4b5c89667319875633dde8e345 /man
parentedc181c514ddc082ce44cde69f2272a12e942b88 (diff)
parent126d079b84750401ca70b30767710f0ead891e81 (diff)
Merge pull request #618 from knocte/aspnet_lru
[WebConfigurationManager] Fix memleak by using a LruCache (BXC#5598)
Diffstat (limited to 'man')
-rw-r--r--man/mono.110
1 files changed, 9 insertions, 1 deletions
diff --git a/man/mono.1 b/man/mono.1
index 318c0586d0f..6d9a37f719b 100644
--- a/man/mono.1
+++ b/man/mono.1
@@ -3,10 +3,11 @@
.\" Copyright 2003 Ximian, Inc.
.\" Copyright 2004-2011 Novell, Inc.
.\" Copyright 2011-2012 Xamarin Inc
+.\" Copyright 2013 7digital Media Ltd.
.\" Author:
.\" Miguel de Icaza (miguel@gnu.org)
.\"
-.TH Mono "Mono 2.11"
+.TH Mono "Mono 3.0"
.SH NAME
mono \- Mono's ECMA-CLI native code generator (Just-in-Time and Ahead-of-Time)
.SH SYNOPSIS
@@ -897,6 +898,13 @@ above locations. If you don't want the mapping to be performed you can set this
variable in your environment before starting the application and no action will
be taken.
.TP
+\fBMONO_ASPNET_WEBCONFIG_CACHESIZE\fR
+Mono has a cache of ConfigSection objects for speeding up WebConfigurationManager
+queries. Its default size is 100 items, and when more items are needed, cache
+evictions start happening. If evictions are too frequent this could impose
+unnecessary overhead, which could be avoided by using this environment variable
+to set up a higher cache size (or to lower memory requirements by decreasing it).
+.TP
\fBMONO_CFG_DIR\fR
If set, this variable overrides the default system configuration directory
($PREFIX/etc). It's used to locate machine.config file.