FasterXML / jackson-datatypes-collections

Jackson project that contains various collection-oriented datatype libraries: Eclipse Collections, Guava, HPPC, PCollections
Apache License 2.0
79 stars 53 forks source link

Suppport simple deserialization of `Cache` #116

Closed JooHyukKim closed 1 year ago

JooHyukKim commented 1 year ago

Supports deserialization side of Cache following #112.

Notes

  1. Implementation and class detection is can be kept miminal because Guava's Cache itself heavily relies on builder mechanism through CacheBuilder so it is most likely we cannot initialize by its subclasses.
  2. Here we referenced most from GuavaMultimapDeserializer Like how #112 Cache serialization was implemented.