aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources/XAssetStore.migrations (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Various database fixups.onefang2019-05-191-4/+4
| | | | | | | InnoDB -> MyISAM utf8 if not exists white space
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-2/+2
|
* MyISAM is still much better performing for OpenSim.David Walter Seikel2016-11-031-2/+2
| | | | This time we got the file system asset server, even better still. B-)
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-18/+23
|
* MyISAM is much better performing for OpenSim.David Walter Seikel2013-02-231-2/+2
|
* Switch to sha256 from sha1 in order to avoid future asset hash collisions.Justin Clark-Casey (justincc)2012-03-061-2/+2
| | | | | | | Some successful collision attacks have been carried out on sha1 with speculation that more are possible. http://en.wikipedia.org/wiki/Cryptographic_hash_function#Cryptographic_hash_algorithms No successful attacks have been shown on sha256, which makes it less likely that anybody will be able to engineer an asset hash collision in the future. Tradeoff is more storage required for hashes, and more cpu to hash, though this is neglible compared to db operations and network access.
* Make XAssetService a de-duplicating asset service.Justin Clark-Casey (justincc)2012-03-021-0/+27
This is an extremely crude implemenation which almost works by accident. Nevertheless it does work. It can be tested with the instructions at http://opensimulator.org/wiki/Feature_Proposals/Deduplicating_Asset_Service#Testing It does not interact at all with the existing asset service or any data stored there. This code is subject to change without notice and should not be used for anything other than gawking.