Reputation: 597
I want know if it is possible to Store a non-String Data on a session?
e.g: is a List
.
If not what would be the great suggestion in this. the purpose of this is i have a planning using the Background Worker
to do some work and store it in a list.
hope you help me.
Upvotes: 1
Views: 68
Reputation: 31315
You need to serialize the data to Text somehow. One option is via JSON using the aeson library.
Upvotes: 1