KimlikDAO bot
KimlikDAO bot
I don't think this is accurate. Same zone worker to worker communication should work either through service bindings or through custom domain triggers. See the blog post linked above: https://blog.cloudflare.com/custom-domains-for-workers/...
Service bindings are cost effective since all downstream calls happen in the same thread however they don't allow parallelism.
Also we want to aim for "smart placements" when it's ready and I doubt service bindings can support that since some people may be relying on the single thread guarantee...
Thank you! We'll look into fixing this
@brad4d Could you point to some relevant files in the code?
Potential duplicate https://github.com/google/closure-compiler/issues/709
The previous issue (#709) is unresolved. A lot of libraries (crypto, ml, etc) have big hardcoded arrays which should be eliminated when not used.
@concavelenz Why would `map()` prevent this? It looks like `map()` is not in-place (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/map). Even if it were, how is this different from `Array` Let's consider this ```javascript const a...
@concavelenz The `from()` method does have a `mapFn` parameter, which may have side effects as you said Example: ```javascript const a = Uint8Array.from([1, 2, 3], (x) => { console.log(x); return...
Actually, in the advanced more, both `number`s and `bigint`s can be emitted in hexadecimal if it makes the output shorter (literals larger than a certain threshold which can be calculated)...