I think Pentagon is really great for quickly prototyping apps. To that end, sometimes it's just not plausible to use Deno to create the projects, and as such it would be great to be able to run Pentagon with other KV-stores (such as Redis).
Ideally, we would have some API like the following:
import { vercelStorage } from '...'
import { redisStorage } from '...'
const db = createPentagon({
...
storage: vercelStorage({ ... }) // or redisStorage({ ... })
})
If possible, ideally we would use something like Unstorage, since they have already a lot of great drivers built, although im not 100% sure if their architecture can acommodate Pentagon.
I think Pentagon is really great for quickly prototyping apps. To that end, sometimes it's just not plausible to use Deno to create the projects, and as such it would be great to be able to run Pentagon with other KV-stores (such as Redis).
Ideally, we would have some API like the following:
If possible, ideally we would use something like Unstorage, since they have already a lot of great drivers built, although im not 100% sure if their architecture can acommodate Pentagon.