aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/InventoryCache.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-1/+12
|
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-28/+56
|
* Finish the implementation of GetUserInventory, even though it's still not used.Diva Canto2012-04-061-0/+51
|
* More on inventory transfer hold ups:Diva Canto2012-03-091-0/+59
| | | | | | - Added an inventory cache for caching root and system folders - Synchronized the remote inventory connector, so that all the remote inventory calls are serialized This will not make much difference in the hold ups. We'd have to move the FireAndForget high up to AddInventoryItem, but that opens up a can of worms regarding the notification of the recipient... the recipient would be notified of the offer before the items are effectively in his inventory, which could lead to surprises.
* Deleted two obsolete files in Inventory modules.Diva Canto2011-12-291-237/+0
|
* Formatting cleanup.Jeff Ames2010-09-121-1/+1
|
* Remove various warnings and improve logging messages. No functional changes.Justin Clark-Casey (justincc)2010-08-231-0/+7
|
* Fix a null ref from trying to access a dictionary that was never initialized.Melanie2010-04-301-1/+2
|
* Started redoing HGInventoryBroker for XInventory and with multi-protocol in ↵Diva Canto2010-04-291-0/+51
| | | | mind. Unfinished.
* Renamed TryGetAvatar to TryGetScenePresence on SceneManager, SceneBase, ↵Dan Lake2010-03-191-1/+1
| | | | Scene and SceneGraph. This was the only change in this patch to keep it isolated from other recent changes to the same set of files.
* Try to cache system folders if they aren't already there when one is requestedJustin Clark-Casey (justincc)2009-08-281-0/+13
| | | | This operation can be performed legitimately on standalones without a logged in user
* Pull out distinct cache system folders and drop cache methods in InventoryCacheJustin Clark-Casey (justincc)2009-08-281-13/+34
|
* Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensimDiva Canto2009-08-121-1/+28
|\
| * Formatting cleanup. Add copyright headers.Jeff Ames2009-08-131-1/+28
| |
* | Redirected all calls to CachedUserProfile methods to the inventory service. ↵Diva Canto2009-08-121-0/+1
|/ | | | Redirection of the RootFolder property is still todo. This compiles but probably inventory will be inconsistent.
* * Added two new packet handler implementations for inventory ops. This is ↵Diva Canto2009-08-121-4/+5
| | | | | | | starting to work! - but can't be activated incrementally, the flip needs to be global for all inventory ops. * Added a base inventory connector that does common processing of inventory among all reference connector implementations. E.g. AddItem requires additional processing before being forwarded to service. * Added if (m_Enabled) upon RemoveRegion
* Better test for dropping inventory cache and writing out debug messages.Diva Canto2009-08-121-16/+21
|
* Fixed test for detecting when user is no longer in sim.Diva Canto2009-08-111-3/+5
|
* System folders inventory cache added to OUT inventory modules. This tracks ↵Diva Canto2009-08-111-0/+108
agents in and out of *sims* in order to fetch/drop their system folders from the cache. Also added region-side support for fetching the system folders from the inventory service. Nothing of this is called yet.