-
Notifications
You must be signed in to change notification settings - Fork 639
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
Proposal: kv db base on remote file system #313
Comments
Thanks for your proposal. Are you going to use this new feature in your project? |
yes my project is developing |
Thanks, but I think this is not a common feature for most users. |
ok |
why i want to do this
kv db base on remote file system.
many rosedb instant can r&w the db file without service.
special for mobile app without backend service.
how do i do it
use afero.Fs to replace os.Fs. it can support local or remote fs, and any other type fs
use Lock interface to replace local file lock. i can support local or remote lock
use db interface to replace struct
split the read write api of db api. write with the lock, read without lock
The text was updated successfully, but these errors were encountered: