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
{{ message }}
This repository has been archived by the owner on Feb 20, 2021. It is now read-only.
When set the data with json with below , unable to serialize it , its adding [ to contact and giving error during get.So actually the Json is getting Set in wrong format.
List people = new List()
{
new Person(1, "Joe", new List()
{
new Contact("1", "123456789"),
new Contact("2", "234567890")
} )
};
Can someone set and get above data with this version properly or fix this issue ASAP ?
The text was updated successfully, but these errors were encountered:
This should be a problem with your serialization tool, and should have nothing to do with redis. If you use spring, you can configure your RedisTemplate
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When set the data with json with below , unable to serialize it , its adding [ to contact and giving error during get.So actually the Json is getting Set in wrong format.
List people = new List()
{
new Person(1, "Joe", new List()
{
new Contact("1", "123456789"),
new Contact("2", "234567890")
} )
};
Can someone set and get above data with this version properly or fix this issue ASAP ?
The text was updated successfully, but these errors were encountered: