-
Notifications
You must be signed in to change notification settings - Fork 122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support polymorphic keys #565
Merged
lewisjkl
merged 14 commits into
cb372:master
from
ronnnnnnnnnnnnn:feature/355-support-polymorphic-keys
Nov 9, 2021
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
ae3fdcc
initial commit including memoization change
ronnnnnnnnnnnnn 4a8a8f4
codec changes to allow usage in implementations wishing to utilize it…
ronnnnnnnnnnnnn 8cd9758
simplifying memoization usage and some cleanup
ronnnnnnnnnnnnn 328582c
Merge pull request #1 from cb372/master
ronnnnnnnnnnnnn 39c4a7e
merging scala 3 and cats-effects 3 support from origin
ronnnnnnnnnnnnn ca13cdc
Merge branch 'cb372:master' into feature/355-support-polymorphic-keys
ronnnnnnnnnnnnn 12eca7b
fix merge conflicts
lewisjkl 6684262
rm bsp json
lewisjkl 9e10f78
remove redundant MonadCancelThrows and format files
lewisjkl 88cae9d
fix scala3 formatting
lewisjkl 7a47983
fix several compilation issues from missing implicits
lewisjkl a053a7c
fix scala 2.12 compilation
lewisjkl 91706ea
fix scala 2.12 compilation
lewisjkl adfa4dd
fix docs
lewisjkl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
modules/circe/src/main/scala/scalacache/serialization/Circe.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
package scalacache.serialization | ||
|
||
import java.nio.ByteBuffer | ||
|
||
import io.circe.jawn.JawnParser | ||
import io.circe.{Decoder, Encoder} | ||
import scalacache.serialization.binary.BinaryCodec | ||
|
||
package object circe { | ||
|
||
private[this] val parser = new JawnParser | ||
|
||
implicit def codec[A](implicit encoder: Encoder[A], decoder: Decoder[A]): Codec[A] = new Codec[A] { | ||
implicit def codec[A](implicit encoder: io.circe.Encoder[A], decoder: io.circe.Decoder[A]): BinaryCodec[A] = | ||
new BinaryCodec[A] { | ||
|
||
override def encode(value: A): Array[Byte] = encoder.apply(value).noSpaces.getBytes("utf-8") | ||
override def encode(value: A): Array[Byte] = encoder.apply(value).noSpaces.getBytes("utf-8") | ||
|
||
override def decode(bytes: Array[Byte]): Codec.DecodingResult[A] = | ||
parser.decodeByteBuffer(ByteBuffer.wrap(bytes)).left.map(FailedToDecode) | ||
override def decode(bytes: Array[Byte]): Codec.DecodingResult[A] = | ||
parser.decodeByteBuffer(ByteBuffer.wrap(bytes)).left.map(FailedToDecode) | ||
|
||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like Caffeine requires the K and V to both extend
Object
(from Java). This wasn't a problem in the past because we were always using String keys. Weirdly, this also only seems to be an issue on Scala 2.12 as it compiles fine for 2.13 and 3. I had to add<: AnyRef
just for 2.12, but I am not really sure of an alternative. @kubukoz Do you happen to have any thoughts on this?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added an issue #603 to discuss this further. Merging this PR so we can continue on with other things in the meantime.