I currently am running queries using NEST (ElasticClient.Search), but I don't do anything with the response objects, I just store the returned JSON.
The reason for this is that just storing statistics is much smaller then keeping around all the data in the ElasticSearch indexes.
At some point later, someone can come along and query the statistics I've stored to disks, but ideally the server would take the JSON file and process it first before displaying it in the UI.
Is there some way to simply load into the ISearchResult object just from the JSON I've stored to disk?
Thank you in advance.