I have a function string --> string
in PowerShell that is quite slow to execute, and I would like to memoize it, that to preserve all the input/output pairs to speed-up an execution that calls this function over and over. I can think of many complicated ways of achieving this. Would anyone have anything not too convoluted to propose?
How to memoize a function in PowerShell?
703 Views Asked by Joannes Vermorel At
3
There are 3 best solutions below
0

I don't know if writing a .NET PowerShell module is practical in your case. If it is, you could use the similar technique as I did with one of my projects.
Steps:
- Rewrite your function as a cmdlet
- Have a static class with a static hash table where you store the results
- Add a -Cache flag to the cmdlet so you can run it with and without the cache (if needed)
My scenario is a little different as I am not using a hash. My cache: https://github.com/Swoogan/Octopus-Cmdlets/blob/master/Octopus.Extensions/Cache.cs Usage: https://github.com/Swoogan/Octopus-Cmdlets/blob/master/Octopus.Cmdlets/GetEnvironment.cs
Well, here's a shot at it. I definitely cannot claim this is a good or efficient method; in fact, even coming up with something that works was tricky and a PowerShell expert might do better.
This is massive overkill in a scripting language, by the way (a global variable is far simpler), so this is definitely more of an intellectual exercise.