aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/JsonStore (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove any mention of IRegionModule from region names and comments to aidMelanie2012-11-122-2/+2
| | | | grepping for remaining uses
* Allow an incoming identifier to be specified for a JsonStore.Mic Bowman2012-09-112-8/+8
|
* Where possible, use the system Encoding.ASCII and Encoding.UTF8 rather than ↵Justin Clark-Casey (justincc)2012-07-111-4/+3
| | | | | | | constructing fresh copies. The encodings are thread-safe and already used in such a manner in other places. This isn't done where Byte Order Mark output is suppressed, since Encoding.UTF8 is constructed to output the BOM.
* Add try/catch around Json script method registration to avoild some issuesMic Bowman2012-04-251-15/+24
| | | | | | with .NET 3.5 vs 4.0 differences. See http://opensimulator.org/mantis/view.php?id=5971
* clean up some more logging spam in the jsonstore modulesMic Bowman2012-04-172-2/+4
|
* Fix the Csharp 3.0 vs 4.0 problem in JsonStore initialization.Mic Bowman2012-04-173-5/+7
| | | | Cut down on the logging spam.
* This commit adds a new optional region module, JsonStore, that provides ↵Mic Bowman2012-04-173-0/+1416
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.