aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Asset (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-09-09Remove useless executable bit that Windows adds.onefang1-0/+0
2020-09-08Move various paths out of the bin directory.onefang1-1/+1
2019-11-01FlotSamAssetcache write to disk needs be sync.UbitUmarov1-2/+5
2019-10-22remove some more useless NULL argumentsUbitUmarov1-6/+6
2019-09-03avoid potencial null refUbitUmarov1-0/+4
2019-08-20Massive console refactor. Greatly simplify interface.Melanie1-10/+10
2019-05-19Move cache, config, logs out of tree, and various related clean ups.onefang1-2/+2
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang5-111/+347
2018-11-27remove unmaintaned and obsolete GlynnTucker.CacheUbitUmarov1-172/+0
2018-06-16mantis 8327: refix minor typosUbitUmarov1-2/+2
2018-06-16mantis 8327: fix minor typosUbitUmarov1-2/+2
2018-02-02do not timeout floatsam assets caching threadUbitUmarov1-2/+2
2018-01-15shut up some pesty warningsUbitUmarov1-1/+1
2017-06-09 make SendCoarseLocations async, since it is http. Make some actions use ↵UbitUmarov1-1/+1
thread from pool and not a new one. Threading does need a deep cleanup one of this days. This stops mantis 8183 warnings, but as side effect only
2017-05-26mantis 8181: don't try to delete contents of a non exitent folderUbitUmarov1-4/+13
2017-03-31Squelch an error that happens when the asset cache was mounted RO.Melanie Thielker1-0/+3
Nothing we can do about that, blame Docker.
2017-02-01Refactor asset handling as per Ubit's suggestionMelanie Thielker4-36/+34
2017-01-30Make negative asset caching actually workMelanie Thielker4-15/+36
Also fixes some merge artefacts in HGAssetBroker where cached assets were requested but not actually used and completely squelch a materials debug message because there is nothing the user can do to fix it anyway.
2017-01-05Massive tab and trailing space cleanupMelanie Thielker5-49/+49
2016-12-29Add negative caching to flotsam cache. Prevents scripts from hammering the ↵Melanie Thielker4-0/+42
asset server
2016-12-29Refactor: Rename IImprovedAssetCache to IAssetCache as the old IAssetCache ↵Melanie Thielker4-13/+13
is long gone.
2016-12-29Add an option to update the file access time even when an asset is found in ↵Melanie Thielker1-0/+15
cache. When the cache is shared between multiple sims, it is often more efficient to have a single expire job run from cron. Updating file access times is vital to the functioning of such setups.
2016-12-29expire also from weak referencesUbitUmarov1-0/+3
2016-12-29gc is also a unwanted cache, so use it. With this, memcache with short ↵UbitUmarov1-12/+71
expires is no longer needed
2016-12-25FloatSamCache: dont use slideexpire on current libovm expirecache. Change ↵UbitUmarov1-26/+49
example settings to use memory cache with short expire time. ( 20% to 40% mem cache hit rates observed
2016-12-09Various little clean ups.David Walter Seikel1-1/+2
2016-11-30 fix null ref on m_CacheCleanTimer control, add a gc.collect on manual ↵UbitUmarov1-2/+4
floatsam fcache assets comand
2016-11-30slow down automatic floatsamAssetCache CleanupExpiredFiles LOT to reduce ↵UbitUmarov1-13/+72
impact on simulation and to give GC more changes of preventing it from eating up all avaialble physcical memory on loaded machines.
2016-11-22Reduce various console spam.David Walter Seikel1-2/+4
2016-11-04Attempt to move everything writable, and the configs, out of the bin directory.David Walter Seikel1-1/+1
Log configs are still in the bin directory.
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel5-140/+288
2015-01-08Make the IteratingUuidGatherer the only UuidGatherer.Justin Clark-Casey (justincc)1-7/+7
This UUID gatherer provides a superset of the previous gatherer's functionality as it also allows the caller to control gathering iterations for load purposes.
2014-12-29Updated OpenSim-as-addin version from 0.5 to 0.8.1. The addin version number ↵Diva Canto1-1/+1
doesn't need to match the release version number, but I think it's a very good idea that they do.
2014-12-05Make "fache assets" console command more efficient by only updating access ↵Justin Clark-Casey (justincc)1-17/+24
times on each cached asset once, not for every reference.
2014-12-04If "fcache assets" is executed, don't stop with an exception if there's an ↵Justin Clark-Casey (justincc)1-2/+1
access violation if another thread is operating on the file at the same time. Resolves one issue from http://opensimulator.org/mantis/view.php?id=7271
2014-12-04refactor: breakout flotasm cache last file access time to separate ↵Justin Clark-Casey (justincc)1-7/+19
UpdateFileLastAccessTime() method for imminent reuse.
2014-12-04Don't worry about checking FlotsamAssetCache.m_CurrentlyWriting when ↵Justin Clark-Casey (justincc)1-8/+1
updating access time. The majority of updates won't be for anything currently writing and any sharing exception from an actual clash can be caught and ignored anyway.
2014-11-25refactor: Move methods to start a monitored thread, start work in its own ↵Justin Clark-Casey (justincc)1-2/+2
thread and run work in the jobengine from Watchdog to a WorkManager class. This is to achieve a clean separation of concerns - the watchdog is an inappropriate place for work management. Also adds a WorkManager.RunInThreadPool() class which feeds through to Util.FireAndForget. Also switches around the name and obj arguments to the new RunInThread() and RunJob() methods so that the callback obj comes after the callback as seen in the SDK and elsewhere
2014-11-25Label all threadpool calls being made in core OpenSimulator. This is to add ↵Justin Clark-Casey (justincc)1-1/+1
problem diagnosis. "show threadpool calls" now also returns named (labelled), anonymous (unlabelled) and total call stats.
2014-11-25refactor: consistently put all test classes in the OpenSim.Tests.Common ↵Justin Clark-Casey (justincc)1-1/+0
package rather than some in OpenSim.Tests.Common.Mock the separate mock package was not useful and was just another using line to always add
2014-09-05For monitoring purposes, start non-timeout tasks (which do not currently use ↵Justin Clark-Casey (justincc)1-1/+3
a threadpool) via Watchdog.RunInThread() rather than Util.RunThreadNoTimeout() The functionality is the same but this allow us to monitor such tasks via "show threads" and abort them for test purposes, etc. Also extends thread names to provide more info (e.g. SendInitialDataToClient says what client the task is for).
2014-08-18Expect a missing directory, the asset cache is shared. Prevent spew ifMelanie Thielker1-0/+5
two nodes run cleanup at the same time.
2014-07-02Actually call Close() for shared region modules when the simulator is being ↵Justin Clark-Casey (justincc)1-3/+6
shutdown. Adds regression test for this case.
2014-04-02Added assets service method AssetsExist(), which returns whether the given ↵Oren Hurvitz1-0/+12
list of assets exist. This method is used to optimize sending assets with embedded assets: e.g., when a Hypergrid visitor takes an item into the inventory.
2014-03-26- Increased the threadpool timeout to 10 minutesOren Hurvitz1-2/+2
- Changed a few places that launch long-lasting threads to skip the timeout altogether
2014-01-20Materials module: a) Store materials as assets; b) Finalized it (removed the ↵Oren Hurvitz1-2/+2
"Demo" label; removed most of the logging); c) Enabled by default Changed UuidGatherer to use 'sbyte' to identify assets instead of 'AssetType'. This lets UuidGatherer handle Materials, which are defined in a different enum from 'AssetType'.
2014-01-18Remove redundant methods in FlotsamAssetCacheJustin Clark-Casey (justincc)1-10/+0
2014-01-18implement CoreAssetCache.Check()Justin Clark-Casey (justincc)1-1/+2
2014-01-18implement GlynnTuckerAssetCache.Check()Justin Clark-Casey (justincc)1-1/+1
2014-01-18Properly implement CenomeAssetCache.Check()Justin Clark-Casey (justincc)1-2/+4