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
fix: Improve serialization/deserialization overhead with EdgeFeatureStore (#914)
**Requirements**
- [X] I have added test coverage for new or changed functionality
- [X] I have followed the repository's [pull request submission
guidelines](../blob/main/CONTRIBUTING.md#submitting-pull-requests)
- [X] I have validated my changes against all supported platform
versions
**Related issues**
#907
**Describe the solution you've provided**
Vercel's edge config already returns the JSON.parsed payload but it was
being JSON.stringified and JSON.parsed an additional time which was
adding overhead. EdgeFeatureStore has been improved to be able to handle
either stringified or parsed data so that this extra
serialization/deserialization step doesn't need to occur.
0 commit comments