Adding the GlynnTucker cache module as the default choice in .ini's.
Minor log message change in the module itself.0.6.6-post-fixes
parent
a576cca59e
commit
e0ef697402
|
@ -60,7 +60,7 @@ namespace OpenSim.Region.CoreModules.Asset
|
||||||
if (moduleConfig != null)
|
if (moduleConfig != null)
|
||||||
{
|
{
|
||||||
string name = moduleConfig.GetString("AssetCaching", "GlynnTuckerAssetCache");
|
string name = moduleConfig.GetString("AssetCaching", "GlynnTuckerAssetCache");
|
||||||
m_log.DebugFormat("[XXX] name = {0} (this module's name: {1}", name, Name);
|
m_log.DebugFormat("[ASSET CACHE] name = {0} (this module's name: {1}). Sync? ", name, Name, m_Cache.IsSynchronized);
|
||||||
|
|
||||||
if (name == Name)
|
if (name == Name)
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
[Modules]
|
[Modules]
|
||||||
AssetCaching = "CoreAssetCache"
|
;AssetCaching = "CoreAssetCache"
|
||||||
|
AssetCaching = "GlynnTuckerAssetCache"
|
||||||
|
|
||||||
[AssetCache]
|
[AssetCache]
|
||||||
; Number of buckets for assets
|
; Number of buckets for assets
|
||||||
CacheBuckets = 32768
|
;CacheBuckets = 32768
|
||||||
|
|
||||||
[AssetService]
|
[AssetService]
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
[Modules]
|
[Modules]
|
||||||
AssetCaching = "CoreAssetCache"
|
;AssetCaching = "CoreAssetCache"
|
||||||
|
AssetCaching = "GlynnTuckerAssetCache"
|
||||||
|
|
||||||
[AssetCache]
|
[AssetCache]
|
||||||
; Number of buckets for assets
|
; Number of buckets for assets
|
||||||
CacheBuckets = 16384
|
;CacheBuckets = 16384
|
||||||
|
|
||||||
[AssetService]
|
[AssetService]
|
||||||
;
|
;
|
||||||
|
|
Loading…
Reference in New Issue