@json-eval-rs/react-native 0.0.72 → 0.0.74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -8
- package/android/src/main/jniLibs/arm64-v8a/libjson_eval_rs.so +0 -0
- package/android/src/main/jniLibs/armeabi-v7a/libjson_eval_rs.so +0 -0
- package/android/src/main/jniLibs/x86/libjson_eval_rs.so +0 -0
- package/android/src/main/jniLibs/x86_64/libjson_eval_rs.so +0 -0
- package/ios/JsonEvalRs.xcframework/ios-arm64/libjson_eval_rs.a +0 -0
- package/ios/JsonEvalRs.xcframework/ios-arm64_x86_64-simulator/libjson_eval_rs.a +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -351,15 +351,7 @@ Typical performance on modern devices:
|
|
|
351
351
|
|
|
352
352
|
Native performance beats JavaScript-only solutions by 10-50x.
|
|
353
353
|
|
|
354
|
-
### Sequential Processing
|
|
355
354
|
|
|
356
|
-
This library uses **sequential processing** by default, which is optimal for mobile devices. The Rust core supports an optional `parallel` feature using Rayon, but:
|
|
357
|
-
- Mobile devices have limited cores and power constraints
|
|
358
|
-
- Sequential processing is faster for typical mobile use cases (small to medium datasets)
|
|
359
|
-
- Parallel overhead exceeds benefits for arrays < 1000 items
|
|
360
|
-
- Battery life is better with sequential processing
|
|
361
|
-
|
|
362
|
-
The default configuration is optimized for mobile performance and battery efficiency.
|
|
363
355
|
|
|
364
356
|
## Error Handling
|
|
365
357
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED