ace/Source/ACE.Server/Config.json.example
Mag-nus b7ca774e53 WeeniePrecaching (#1047)
* Landblock Preloader cleanup

* WorldDatabase spelling fixes

* Added CacheAllWeeniesInParallel

* Add WeeniePrecaching

* Improved WorldDatabase Caching

Null entries are now cached as well to prevent excessive queries to the database to pull records that do not exist.

The callers should raise warnings when a record doesn't exist.

* WorldDatabasePrecaching (~400MB)
2018-10-09 11:52:00 -04:00

44 lines
1 KiB
JSON

{
"Server": {
"WorldName": "ACEmulator",
"Welcome": "Welcome to this ACE server!\nFor more information visit http://emulator.ac",
"Network": {
"Host": "0.0.0.0",
"Port": 9000,
"MaximumAllowedSessions": 128,
"DefaultSessionTimeout": 60
},
"Accounts": {
"OverrideCharacterPermissions": true,
"DefaultAccessLevel": 0,
"AllowAutoAccountCreation": true
},
"DatFilesDirectory": "c:\\ACE\\",
"ShutdownInterval": "60",
"WorldDatabasePrecaching": false,
"LandblockPreloading": false
},
"MySql": {
"Authentication": {
"Host": "127.0.0.1",
"Port": 3306,
"Database": "ace_auth",
"Username": "root",
"Password": ""
},
"Shard": {
"Host": "127.0.0.1",
"Port": 3306,
"Database": "ace_shard",
"Username": "root",
"Password": ""
},
"World": {
"Host": "127.0.0.1",
"Port": 3306,
"Database": "ace_world",
"Username": "root",
"Password": ""
}
}
}