devops hipster in training.

Results 9 issues of devops hipster in training.

I guess this was probably written before this was possible but any thoughts on using [AWS.DynamoDB.DocumentClient](https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/DynamoDB/DocumentClient.html)? It would remove the need for the type guessing in `parse()` and the need...

## Feature Request Resolution of Cloudformation referenced environment variables serverless recently added better support for cloudformation referenced environment variables for `sls invoke local`. They currently support !Ref and !ImportValue https://www.serverless.com/framework/docs/providers/aws/cli-reference/invoke-local#local-function-invocation-setting-environment-variables...

feature

Love this library! At the moment there appears to be no hooks to determine if the cached key lookup was a hit or a miss or the number of times...

enhancement

Can the github release action be kicked off? serverless is up to 3.28.1 now.

Hi. Ran into object caching issues in our test suites due to the usage of require to read the sample mocks as described here. https://goenning.net/2016/04/14/stop-reading-json-files-with-require/ This PR should address the...

For the example in the README.md for type-cacheable/redis-adapter ``` import Redis from 'redis'; import { useAdapter } from '@type-cacheable/redis-adapter'; const client = Redis.createClient(); const clientAdapter = useAdapter(client); ``` the typings...

The redis-adapter package is not compatible with [redis clustering mode](https://github.com/redis/node-redis/blob/master/docs/clustering.md) example: ``` import { useAdapter } from '@type-cacheable/redis-adapter'; import { createCluster } from 'redis'; const client = createCluster({ rootNodes: [{...

Not sure if this is a bug or expected behaviour From my testing with both redis adapters it seems that ioredis-adapter always use string key type regardless of hashKey decorator...