admin管理员组

文章数量:1341429

What information can I obtain from the performance.memory object in Chrome?
What do these numbers mean? (are they in kb's or characters)
What can I learn from these numbers?

Example values of performance.memory

MemoryInfo {
  jsHeapSizeLimit: 793000000,
  usedJSHeapSize: 10000000,
  totalJSHeapSize: 31200000
}

What information can I obtain from the performance.memory object in Chrome?
What do these numbers mean? (are they in kb's or characters)
What can I learn from these numbers?

Example values of performance.memory

MemoryInfo {
  jsHeapSizeLimit: 793000000,
  usedJSHeapSize: 10000000,
  totalJSHeapSize: 31200000
}
Share edited Jun 23, 2017 at 9:19 John Weisz 32.1k14 gold badges96 silver badges136 bronze badges asked Jan 20, 2014 at 16:00 Rick HovingRick Hoving 3,5753 gold badges31 silver badges50 bronze badges 3
  • 1 Have you checked the docs? – Bergi Commented Jan 20, 2014 at 16:09
  • 2 @Bergi of course I have :-), although it explains what the metrics are . It doesn't state the measurements of these metrics (e.g. kb's or what else?) – Rick Hoving Commented Jan 20, 2014 at 16:12
  • 1 My question is, what can I use the data for. What is their usage. – Rick Hoving Commented Jan 20, 2014 at 16:13
Add a ment  | 

2 Answers 2

Reset to default 8

What information can I obtain from the performance.memory object in Chrome?

The property names should be pretty descriptive.

What do these numbers mean? (are they in kb's or characters)

The docs state:

The values are quantized as to not expose private information to attackers.

See the WebKit Patch for how the quantized values are exposed. The tests in particular help explain how it works.

What can I learn from these numbers?

You can identify problems with memory management. See http://www.html5rocks./en/tutorials/memory/effectivemanagement/ for how the performance.memory API was used in gmail.

The related API documentation does not say, but my read judging by the numbers you shared and what I see on my machine is that the values are in bytes.

A quick review of the code to which Bergi linked - regarding the values being quantized - seems to support this - e.g. float sizeOfNextBucket = 10000000.0; // First bucket size is roughly 10M..

The quantized MemoryInfo properties are mostly useful for monitoring vs. determining the precise impact of operations on memory. A ment in the aforementioned linked code explains this well I think:

86 // We quantize the sizes to make it more difficult for an attacker to see precise
87 // impact of operations on memory. The values are used for performance tuning,
88 // and hence don't need to be as refined when the value is large, so we threshold
89 // at a list of exponentially separated buckets.

Basically the values get less precise as they get bigger but are still sufficiently precise for monitoring memory usage.

本文标签: javascriptInformation heap sizeStack Overflow