I am using SQL Server 2008 and C# for a CLR Stored Procedure. Is there any way to keep in memory a big object and to retrieve this object after a second call of the Stored Procedure?
In the second call, I need to retrieve the data of this big object as quickly as possible. This object is like a table.
If there is no way, I was thinking about the serialization. Or I was thinking to implement something by myself to speed-up the process. What do you think?
Thanks!