aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/OpenSim.ini.example (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* * Fixes the 10x10x10 hard physics limitation. (wierdly, you have to set ↵Teravus Ovares (Dan Olivares)2009-12-031-0/+3
| | | | | | | this for each region in your Regions.ini[PhysicalPrimMax = 10(default)]) * Adds a configurable maximum object mass before the mass is clamped. Default is 10000.01. Configurable by changing maximum_mass_object in the [ODEPhysicsSettings] section. * Clamping the mass is important for limiting the amount of CPU an object can consume in physics calculations. Too high, and the object overcomes restitution forces by gravity alone. This generates more collisions potentially leading to 'deep think'.
* minor: add disabled config and explanation for WebStatsJustin Clark-Casey (justincc)2009-11-301-1/+9
|
* enable messaging_server_url by default in OpenSim.ini.exampleJustin Clark-Casey (justincc)2009-11-301-1/+1
| | | | | having this enabled results just in warning messages if no message service is actually available haivng this disabled results in an unexpected failure if no message service is available
* Following various discussions on irc and in the OpenSim dev OSGrid meeting ↵Justin Clark-Casey (justincc)2009-11-091-1/+1
| | | | | | | last week, change av_capsule_tilted to false by default This appears to now give better ODE physics response (less sinking into the ground, etc.) Please change it back if this is actually a bad idea for some reason
* * Moving parcel media and avatar update packets from the unthrottled ↵John Hurliman2009-10-301-7/+7
| | | | | | | category to task * Fixing a bug where the max burst rate for the state category was being set as unlimited, causing connections to child agents to saturate bandwidth * Upped the example default drip rates to 1000 bytes/sec, the minimum granularity for the token buckets
* * Fixes issue #4329 "llDialog fails silently" by updating OpenMetaverse.dllJohn Hurliman2009-10-301-1/+1
| | | | * Prints a warning for any future packet splitting failures
* * Misc. formatting cleanup for the previous patchJohn Hurliman2009-10-291-0/+7
| | | | * Added the new AppDomainLoading variable to the [XEngine] section in the example config
* * Reduce the velocity tolerance on sending terse updates to avoid slowly ↵John Hurliman2009-10-281-0/+3
| | | | | | drifting prims/avatars * Added contacts_per_collision to the ODE config section. This allows you to reduce the maximum number of contact points ODE will generate per collision and reduce the size of the array that stores contact structures
* Changed True to true in OpenSim.ini.example.Diva Canto2009-10-271-1/+1
|
* Removed the DotNetEngine scripting engine. You will need to create a fresh ↵John Hurliman2009-10-271-127/+1
| | | | checkout or clean out all *DotNet*.dll assemblies from the bin/ directory to run OpenSim moving forward
* Finally hunted down the Parallel deadlock. Packets were being handled ↵John Hurliman2009-10-271-1/+1
| | | | asynchronously (filling up the threadpool with handlers), which would turn around and try to do parallel operations on the starved threadpool. The solution for now is to disable Parallel.cs operations until we can gracefully handle parallel operations with a potentially starved threadpool
* * Switched all operations on the list of clients that could be either sync ↵John Hurliman2009-10-261-0/+7
| | | | | | | | or async to use Scene.ForEachClient() instead of referencing ClientManager directly * Added a new [Startup] config option called use_async_when_possible to signal how to run operations that could be either sync or async * Changed Scene.ForEachClient to respect use_async_when_possible * Fixing a potential deadlock in Parallel.ForEach by locking on a temporary object instead of the enumerator (which may be shared across multiple invocations on ForEach). Thank you diva
* * Unregister Mono.Addins event handlers in PluginLoader.Dispose() and always ↵John Hurliman2009-10-231-5/+5
| | | | | | | handle PluginLoader with the using pattern. This freed up 121,634,796 bytes on my system * Avoid allocating an Action<IClientAPI> object every round of the OutgoingPacketHandler * Removed unnecessary semi-colon endings from OpenSim.ini.example [InterestManagement] section
* Cleaning up OpenSim.ini.example for LLUDP. The [LLClient] section has been ↵John Hurliman2009-10-231-32/+30
| | | | removed and several new parameters have been added to [ClientStack.LindenUDP]
* Implemented a "FrontBack" prioritizer, using distance plus the plane ↵John Hurliman2009-10-231-2/+2
| | | | equation to give double weight to prims/avatars in front of you
* OpenSim.ini.example had the wrong names for default values in the ↵John Hurliman2009-10-221-6/+7
| | | | [InterestManagement] section. Fixed
* * Allow SmartThreadPool to be initialized without setting max stack size ↵John Hurliman2009-10-221-5/+9
| | | | | | | (like the original implementation) * Only initialize Util's SmartThreadPool if it is actually being used * No longer initializing Util's SmartThreadPool with a custom max stack size. From MSDN: "Avoid using this constructor overload. The default stack size used by the Thread(ThreadStart) constructor overload is the recommended stack size for threads."
* Merge branch 'melanie_test' into prioritizationMelanie2009-10-221-1/+4
|\ | | | | | | | | This makes SmartThreadPool configurable and also makes it the default, since the regular thread pool simply stinks.
| * Reduce the default pool threads to 15 (from 30) and the minimum from 5 to 2Melanie2009-10-221-1/+1
| |
| * Add MaxPoolThreads in startup to limit the size of the thread pool usedMelanie2009-10-221-0/+3
| | | | | | | | for FireAndForget. This lets us limit concurrency to make OpenSim play nice
* | * Changed the misc. methods calling ThreadPool.UnsafeQueueUserWorkItem() to ↵John Hurliman2009-10-211-0/+9
|/ | | | | | Util.FireAndForget() * Changed Util.FireAndForget() to use any of five different methods set with async_call_method in the [Startup] section of OpenSim.ini. Look at the example config for possible values
* * Removed OpenSim.Data.NHibernateJohn Hurliman2009-10-191-6/+0
| | | | * Replaced calls to ThreadPool.QueueUserWorkItem() with ThreadPool.UnsafeQueueUserWorkItem() since OpenSim does not use Code Access Security sandboxing
* Updating OpenSim.ini.example with the section required to enable a useful ↵John Hurliman2009-10-161-0/+8
| | | | prioritization scheme
* Allow the LLUDP server to run in either synchronous or asynchronous mode ↵John Hurliman2009-10-141-1/+7
| | | | with a config setting, defaulting to synchronous mode
* * Clean up the SetThrottle() code and add a maxBurstRate parameter to allow ↵John Hurliman2009-10-141-7/+10
| | | | more tweaking in the future
* * Minimized the number of times textures are pulled off the priority queueJohn Hurliman2009-10-141-25/+37
| | | | | | * OnQueueEmpty is still called async, but will not be called for a given category if the previous callback for that category is still running. This is the most balanced behavior I could find, and seems to work well * Added support for the old [ClientStack.LindenUDP] settings (including setting the receive buffer size) and added the new token bucket and global throttle settings * Added the AssetLoaderEnabled config variable to optionally disable loading assets from XML every startup. This gives a dramatic improvement in startup times for those who don't need the functionality every startup
* change default ports for inventory and grid connectors in example .ini files ↵Justin Clark-Casey (justincc)2009-10-051-2/+2
| | | | | | to 8003 to match the ROBUST default altered wiki page to reflect this
* Merge branch 'master' into diva-texturesMelanie2009-10-021-0/+4
|\
| * Added a default for grid services in standalone.Diva Canto2009-10-021-0/+4
| |
* | Merge branch 'master' into diva-texturesMelanie2009-10-021-2/+6
|\ \ | |/
| * Fixed MapBlocks bug, wrong order of arguments. First version that seems ↵Diva Canto2009-09-261-1/+1
| | | | | | | | | | | | completely functional. Also fixed the notification of the message server in standalone -- that server doesn't usually exist.
| * Changed a [Groups] config as per mcortez' request.Diva Canto2009-09-251-1/+1
| |
| * Thank you, Intari, for a patch that implements the missing pieces ofMelanie2009-09-221-0/+4
| | | | | | | | | | | | | | | | Http-in and makes the host name for URL generation configurable. Applied with changes: llGetSimulatorHostname was not changed, because the change breaks existing behavior and carries a data exposure risk. That value needs to be configurable, the proposed fixed change is not acceptable.
* | Change texture sending to be driven by the queue empty event from theMelanie2009-10-021-5/+0
| | | | | | | | packet queue, rather than a timer
* | Remove the settings for the J2KDecoder, since they are now obsolete (thank god!)Melanie2009-09-301-9/+0
|/
* switch default physics engine to ODE and default meshmerizer to Meshmerizer ↵Justin Clark-Casey (justincc)2009-09-161-9/+14
| | | | in code and in OpenSim.ini.example
* Apply http://opensimulator.org/mantis/view.php?id=4142Justin Clark-Casey (justincc)2009-09-141-11/+13
| | | | | | Re-enable XMLRPC scripting calls Moves XMLRPC scripting setup to a separate section Thanks Fly-Man-
* * Milestone GridFriendly reached so Adding CombineContiguousRegions to the ↵Teravus Ovares (Dan Olivares)2009-09-131-0/+5
| | | | OpenSim.ini.example
* update documentation in OpenSim.ini.example for j2k decode cache expiration timedahlia2009-09-011-0/+2
|
* - making font name used by VectorRenderModule configurable: can be setdr scofield (aka dirk husemann)2009-08-311-0/+4
| | | | | | | | | | | via [VectorRender] font_name = "Comic Sans MS" in OpenSim.ini - adding osSetFontName OSSL function
* Add a slow cache cleaner thread. By default, the thread starts a cleanupMelanie2009-08-291-1/+1
| | | | | | sweep every 10 minutes. If any texture data is older than 12 hours, it is regenerated and the memory cache is refreshed. After each decode, the thread delays for 5 seconds.
* Make the j2kDecodeCache expire after 50 minutes (configurable). Alse allowsMelanie2009-08-291-0/+7
| | | | | | setting the path for it. This commit introduces NEW DEFAULT BEHAVIOR. To retain the old behavior (eternal cache) you will need to change your OpenSim.ini and set the timeout to 0.
* Added new OpenSim.ini setting: "client_throttle_max_bps" which overrides ↵dahlia2009-08-181-0/+3
| | | | user's viewer network throttle settings
* Apply http://opensimulator.org/mantis/view.php?id=3538Justin Clark-Casey (justincc)2009-08-171-10/+15
| | | | | | Add ability to silence IRC relay of region joins and quits from certain users This is useful for admins who wish to remain hidden, or service bots. Thanks RemedyTomm
* Added additional configuration options for MRM Security. See ↵Adam Frisby2009-08-181-2/+20
| | | | OpenSim.ini.example under the [MRM] section.
* Add the ability to use -console=rest to the region server. UserMelanie2009-08-171-0/+2
| | | | and pass are specified the same way as for the ROBUST server
* Misc cleanup.Jeff Ames2009-08-161-60/+58
|
* Merge branch 'master' into groups-core-contribMichael Cortez2009-08-061-0/+8
|\
| * Add the config-include statement to OpenSim.ini.example.Melanie2009-08-061-0/+8
| | | | | | | | addon-modules/*/config/*.ini is now included in the configuration
* | Continue with renaming of Groups module componentsMichael Cortez2009-08-051-15/+22
|/