-
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Slow on the try/catch case #24
Comments
hmm, the intention behind putting the try/catch inside a separate function wad that it allows v8 to optimize the main function. What browsers is this profiled in? The current implementation already does all the fast checks it can - typeof, mainly - before hitting the try/catch (i could add an additional truthiness check to account for null, but i doubt that’ll help much) Do you know what parts of your application are calling the predicates? |
That part seems to be working; the main functions do not meaningfully show up on the profiler. But the separate try/catch functions are themselves still slow/unoptimized enough to take a comparatively large amount of time :)
This was in Node.js 18.20.3, run with
I don't think that would help in my case - the case that I suspect it's triggering on a lot, is "argument that can be either a string or a number, and so one of the validators has to fail before it checks the next one", which means that it hits the no-match case quite often with non-null values.
They're called from within the corresponding Validatem validators, which do the argument validation for my SPARQL query builder, so they get called quite a lot (one to multiple times for each query builder method). I control basically the entire stack right up to the For now I've vendored a modified version of these libraries that does an |
If you're going for a caveat-d approach, why not use The only reason to use the inspect-js predicate packages for primitives is to handle boxed primitives. |
Well, the intention was to get as close as possible to a correct/comprehensive check :) |
|
While profiling an application, I found
is-string
(and a few related libraries) pretty much topping the charts across the entire codebase:It appears that the try/catch check in
tryStringObject
does not get optimized (due to being a try/catch, I assume) and this makes the type checks very slow, comparatively speaking. It's on a hot path for me due to being used in argument validation code.The same problem manifests in
is-number-object
andis-date-object
(and presumably others that happen to not be used in this particular project).Perhaps this check could be replaced with a faster one in some way, or if not, only applied if the value hits a (faster) test that suggests this check should be applied?
The text was updated successfully, but these errors were encountered: