Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/misc/JavaScript/Memory Cache.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,9 @@ function wrapLoop(fn) {
// there are two ways of saving Memory with different advantages and disadvantages
// 1. RawMemory.set(JSON.stringify(Memory));
// + ability to use custom serialization method
// - you have to pay for serialization
// - unable to edit Memory via Memory watcher or console
// 2. RawMemory._parsed = Memory;
// - undocumented functionality, could get removed at any time
// + the server will take care of serialization, it doesn't cost any CPU on your site
// + maintain full functionality including Memory watcher and console

// this implementation uses the official way of saving Memory
Expand Down