-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Custom storage implementation #183
Comments
There isn't built-in support for custom storage implementations. However, I've made a small change to make it easier to modify in the code and build yourself. Storage appears as an interface to the client: If you are willing to write some code, this line is where you should start: Lines 448 to 450 in e8a4831
Please let me know if you have questions. |
This issue is stale because it has been open for 30 days with no activity. |
@cenkalti This is cool. Do you think |
I added: Lines 205 to 206 in f14dfc0
Does that work for you? |
This looks great, thanks! |
Any plans to support custom storage implementations, so that I could store files into cloud storage for example? Or even memory? It seems that for memory I could use a tmpfs mount point and then direct the library to store everything there, but having things in Go process might be easier to track/account memory usage to the program.
The text was updated successfully, but these errors were encountered: