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
Add caching for the deducted Avro schemas to the library itself. The implementation of the cache must be thread-safe. A possible JVM-dependent way would be to use ClassValue as it is implemented in Avro's ClassValueCache.
Preferrable, the implementation should not depend on JVM specifics so that making this library multiplatform in the future is easier.
The text was updated successfully, but these errors were encountered:
Add caching for the deducted Avro schemas to the library itself. The implementation of the cache must be thread-safe. A possible JVM-dependent way would be to use
ClassValue
as it is implemented in Avro'sClassValueCache
.Preferrable, the implementation should not depend on JVM specifics so that making this library multiplatform in the future is easier.
The text was updated successfully, but these errors were encountered: