-
Notifications
You must be signed in to change notification settings - Fork 39
Improve constructor performance #39
Comments
Interesting, you mean that using a try/catch block is slower than? Perhaps returning a Boolean? I'm also down to coalesce this two methods into one https://github.com/ipld/js-cid/blob/master/src/index.js#L220-L255 |
Hi, @dignifiedquire I'm interested in taking a look at this issue. Do you happen to have any particular use case(s) you have in mind? Like, maybe, a sample code that heavily calls |
The main usage I was looking at was when profiling js-ipfs as a whole. Especially when doing file transfers. |
OK. thanks. Let me start from bottom up, and see if any change we make, if any, will make a difference in such a use case. |
Here's a quick update. I tried simply changing I can look further, but it's clearly a low-hanging fruit which can show some benefits immediately. I can create a PR if you guys want to include this change. The only downside is that there is some code duplication. (Without knowing all the relevant code, I cannot make any type of aggressive optimizations.) Because of their internal logic, it's not easy to use a common/shared function, etc. (We can introduce an "error code", etc., but I think it's an overkill, possibly.) Please let me know how you guys want to proceed. |
Updated the isCID() implementation to use a (private) intermediate method to validate CID without relying on the error being thrown during validation. The validateCID() method also uses this intermediate method, and its behavior has been preserved (e.g., with regards to throwing an error for invalid CIDs).
I went ahead and created a PR #45 for your review. Thanks. ~h |
Super cool 👏🏽👏🏽👏🏽👏🏽👏🏽 This is rad, I'm sure it will have a real perf improv in js-ipfs given that we use CID creation a lot. |
When I was doing some profiling I found out that if loading a lot of blocks from storage,
new CID
gets in to pretty hot code paths and starts becoming a bottleneck. Specifically theCID.isCID
is not well optimized as it usestry catch
to determine if we already have a CIDThe text was updated successfully, but these errors were encountered: