{"ScriptPreparationCode":null,"TestCases":[{"Name":"Object cache","Code":"const CHUNK_SIZE = 100000;\r\nconst cache = {};\r\n\r\n\r\nfor (let i = 0; i \u003C CHUNK_SIZE; i\u002B\u002B) {\r\n\tif (i % 2 === 0) {\r\n \tcache[i] = JSON.stringify({ TzId: i, Name: \u0060Tz${i}\u0060});\r\n }\r\n}\r\n\r\nfor (let i = 0; i \u003C CHUNK_SIZE; i\u002B\u002B) {\r\n if (cache.hasOwnProperty(i)) {\r\n\t\tconsole.log(cache[i]);\r\n } else {\r\n console.log(\u0027empty\u0027);\r\n }\r\n}","IsDeferred":false},{"Name":"Map cache","Code":"const CHUNK_SIZE = 100000;\r\nconst cache = new Map();\r\n\r\nfor (let i = 0; i \u003C CHUNK_SIZE; i\u002B\u002B) {\r\n\tif (i % 2 === 0) {\r\n \tcache.set(i, JSON.stringify({ TzId: i, Name: \u0060Tz${i}\u0060}));\r\n }\r\n}\r\n\r\nfor (let i = 0; i \u003C CHUNK_SIZE; i\u002B\u002B) {\r\n if (cache.has(i)) {\r\n\t\tconsole.log(cache.get(i));\r\n } else {\r\n console.log(\u0027empty\u0027);\r\n }\r\n}","IsDeferred":false}]}