aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/JsonStore/JsonStoreModule.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* clean up some more logging spam in the jsonstore modulesMic Bowman2012-04-171-1/+2
|
* Fix the Csharp 3.0 vs 4.0 problem in JsonStore initialization.Mic Bowman2012-04-171-2/+2
| | | | Cut down on the logging spam.
* This commit adds a new optional region module, JsonStore, that provides ↵Mic Bowman2012-04-171-0/+429
structured storage (dictionaries and arrays of string values) for scripts and region modules. In addition, there are operations on the storage that enable "real" distributed computation between scripts through operations similar to those of a tuple space. Scripts can share task queues, implement shared locks or semaphores, etc. The structured store is limited to the current region and is not currently persisted. However, script operations are defined to initialize a store from a notecard and to serialize the store to a notecard. Documentation will be posted to the opensim wiki soon.