Quantcast
Channel: Active questions tagged nuget-package - Stack Overflow
Viewing all articles
Browse latest Browse all 3067

Fast performing way to download the file content from Azure blob and pass that to a rule engine for parsing

$
0
0

I have a NuGet based utility which parses expressions from Json files and these expressions are pass to a rule engine for evaluation. The content of such files are currently stored in the caller application(which calls this NuGet). I'm trying a way these files can be maintained outside the caller so that any changes to content of these files should not need any deployments to be done.

I'm thinking to add these files in blob and pull the Json content as stream, write them in local files in disk(a specific hierarchy is required for engine to parse-> Folder->rootfile(1)->(n)files). Then read this data from disk and pass to the engine.

The problem with this approach is performance and the rule engine supports singleton architecture.

Is there any other way which can be explored to achieve the goal like caching, with a very fast access to this Json content when placed outside the caller repo?


Viewing all articles
Browse latest Browse all 3067

Trending Articles