Hello,
I expose the situation : I'm working with
VB.NET and i have an SQL Server query that returns a tuple that I use to fill an object that I use later.
When i cache this object via my set command (.set("nameKey",myObject) the first parameter is the name of my key and the second the value) and then i get it, I get the type of this object but i'm looking to get my whole object instead of its type.
I also thought about using hashes, but I have queries where I get a lot of informations, something that would take me a lot of time to reproduce with hashes.
What would be the solution to my problem ?