Using BoxLang’s Cache Services
Recently I’ve been looking at BoxLang’s Caching service, mostly because the docs were updated which made it easier to dig into it.
My usual expectation for a caching service is typically a key/value system with APIs to get and set and hopefully a simple way to handle expiration. So for example, I can idealy store a cache value and an expiration values at the same time, and if I fetch it later and it’s expired, I get a nice null value back. As I said, that’s the ‘baseline’ for what I expect, so I was kind of blown away, and a bit overwhelmed honestly, with what you can do on the BoxLang platform. At a high level, here’s some of the details:
Out of... more →
Posted in: JavaScript