mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 13:22:55 +08:00
Merge pull request #24210 from OliBomby/fast-save
Optimize editor save action for huge Realm database
This commit is contained in:
commit
b60c0c090d
@ -431,8 +431,9 @@ namespace osu.Game.Beatmaps
|
|||||||
beatmapInfo.Status = BeatmapOnlineStatus.LocallyModified;
|
beatmapInfo.Status = BeatmapOnlineStatus.LocallyModified;
|
||||||
beatmapInfo.ResetOnlineInfo();
|
beatmapInfo.ResetOnlineInfo();
|
||||||
|
|
||||||
using (var stream = new MemoryStream())
|
Realm.Write(r =>
|
||||||
{
|
{
|
||||||
|
using var stream = new MemoryStream();
|
||||||
using (var sw = new StreamWriter(stream, Encoding.UTF8, 1024, true))
|
using (var sw = new StreamWriter(stream, Encoding.UTF8, 1024, true))
|
||||||
new LegacyBeatmapEncoder(beatmapContent, beatmapSkin).Encode(sw);
|
new LegacyBeatmapEncoder(beatmapContent, beatmapSkin).Encode(sw);
|
||||||
|
|
||||||
@ -458,23 +459,20 @@ namespace osu.Game.Beatmaps
|
|||||||
|
|
||||||
updateHashAndMarkDirty(setInfo);
|
updateHashAndMarkDirty(setInfo);
|
||||||
|
|
||||||
Realm.Write(r =>
|
var liveBeatmapSet = r.Find<BeatmapSetInfo>(setInfo.ID)!;
|
||||||
{
|
|
||||||
var liveBeatmapSet = r.Find<BeatmapSetInfo>(setInfo.ID)!;
|
|
||||||
|
|
||||||
setInfo.CopyChangesToRealm(liveBeatmapSet);
|
setInfo.CopyChangesToRealm(liveBeatmapSet);
|
||||||
|
|
||||||
if (transferCollections)
|
if (transferCollections)
|
||||||
beatmapInfo.TransferCollectionReferences(r, oldMd5Hash);
|
beatmapInfo.TransferCollectionReferences(r, oldMd5Hash);
|
||||||
|
|
||||||
liveBeatmapSet.Beatmaps.Single(b => b.ID == beatmapInfo.ID)
|
liveBeatmapSet.Beatmaps.Single(b => b.ID == beatmapInfo.ID)
|
||||||
.UpdateLocalScores(r);
|
.UpdateLocalScores(r);
|
||||||
|
|
||||||
// do not look up metadata.
|
// do not look up metadata.
|
||||||
// this is a locally-modified set now, so looking up metadata is busy work at best and harmful at worst.
|
// this is a locally-modified set now, so looking up metadata is busy work at best and harmful at worst.
|
||||||
ProcessBeatmap?.Invoke(liveBeatmapSet, MetadataLookupScope.None);
|
ProcessBeatmap?.Invoke(liveBeatmapSet, MetadataLookupScope.None);
|
||||||
});
|
});
|
||||||
}
|
|
||||||
|
|
||||||
Debug.Assert(beatmapInfo.BeatmapSet != null);
|
Debug.Assert(beatmapInfo.BeatmapSet != null);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user