You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using Jastor for some large JSON and noticed processing was not so fast. It seems as [self map] is called a very large number of times inside initWithDictionary. Why not move the call out of the main loop?
The text was updated successfully, but these errors were encountered:
I cloned the repo for working on caching the property maps.
Speedup of the map processing is from O(n*m) to O(1) as each map is only calculated once in the apps lifetime. https://github.com/Vivino/jastor
I'm using Jastor for some large JSON and noticed processing was not so fast. It seems as [self map] is called a very large number of times inside initWithDictionary. Why not move the call out of the main loop?
The text was updated successfully, but these errors were encountered: