object = { value: 'data', getData() {return this.value;} };
proxyWithHandler1 = new Proxy(object, {
get(target, prop, receiver) {
return Reflect.get(target, prop, receiver)
}
})
proxyWithHandler2 = new Proxy(object, {
get(target, prop, receiver) {
return target[prop]
}
})
object.value
proxyWithHandler1.value
proxyWithHandler2.value
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
direct | |
proxy1 | |
proxy2 |
Test name | Executions per second |
---|---|
direct | 7989411.5 Ops/sec |
proxy1 | 3284576.0 Ops/sec |
proxy2 | 6081248.5 Ops/sec |
Let's break down the provided JSON data and explain what's being tested in this JavaScript microbenchmark.
Benchmark Definition
The benchmark definition is a JSON object that describes the test case. In this case, there are three test cases:
object.value
proxyWithHandler1.value
proxyWithHandler2.value
These test cases measure the performance of accessing the value
property directly on the original object (object
) versus using two different proxy handlers: proxyWithHandler1
and proxyWithHandler2
.
Proxy Handlers
The benchmark uses JavaScript's built-in Proxy
API to create these two proxy handlers:
proxyWithHandler1
: This handler returns the value of the accessed property by calling the Reflect.get()
method. This means that the proxy will delegate the access to the original object, but still use the reflect
mechanism to look up the property value.proxyWithHandler2
: This handler simply returns the value of the accessed property directly from the original object.What's being tested
The benchmark is testing the performance of accessing the value
property on the original object (object
) versus using these two proxy handlers. Specifically, it's measuring the:
value
property on the original object (object.value
)value
property through proxyWithHandler1
, which delegates the access to the original objectvalue
property through proxyWithHandler2
, which returns the value directly from the original objectPros and Cons
Here are some pros and cons of each approach:
object.value
):proxyWithHandler1.value
):Reflect.get()
for a potentially faster lookup.proxyWithHandler2.value
):Library/Utility
The benchmark uses the Reflect
library, which provides a way to inspect and modify the behavior of JavaScript objects. Specifically, it uses Reflect.get()
in the proxy handler 1 (proxyWithHandler1
) to look up the value of the accessed property.
Special JS feature/Syntax
There is no special JavaScript feature or syntax used in this benchmark. It relies solely on standard JavaScript features and APIs.
Alternatives
If you were to implement a similar benchmark, here are some alternatives you could consider:
Proxy.create()
instead of new Proxy()
)