https://github.com/dabroek/node-cache-manager-ioredis/blob/3bf4514e2e0c0b76126bb1997103b7555ff4b003/index.js#L69 The delete method does not appear to be wrapped in a Promise, giving it a different signature to the other methods. Believe it is supposed to? ```javascript self.del = (key, options, cb) => { if (typeof options === 'function') { cb = options; } redisCache.del(key, handleResponse(cb)); }; ```