olirice / cachetools_ext

cachetools extension adding backends
Other
9 stars 2 forks source link

Thanks for making this. #1

Closed rams3sh closed 3 years ago

rams3sh commented 3 years ago

Hey Oliver

Thanks for making this extension as I was really in search of SQLITE based cache for my small project. I had used your SQLITE cache code from here and I wanted to give credit to you in the project README.

I had mentioned your name under CREDITS section as of now and I wanted to know if that's okay with you .

Thanks again !!

olirice commented 3 years ago

For sure! You're welcome to use any thing in this repo.

Just want to make sure you realize that the sqlite cache class was removed from this lib several months ago. I ran into problems with the database getting blocked/locked when multiple workers attempted to access large binary objects in the same cache database.

It should be fine for single threaded access (afaik) but its definitely not perfect