Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nak3/memdbfs
memdbfs is a fuse file system built on go-memdb
https://github.com/nak3/memdbfs
database filesystem fuse-filesystem hashicorp
Last synced: about 2 months ago
JSON representation
memdbfs is a fuse file system built on go-memdb
- Host: GitHub
- URL: https://github.com/nak3/memdbfs
- Owner: nak3
- License: mpl-2.0
- Created: 2017-07-15T13:13:29.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-16T05:57:31.000Z (over 7 years ago)
- Last Synced: 2024-10-14T11:18:26.648Z (3 months ago)
- Topics: database, filesystem, fuse-filesystem, hashicorp
- Language: Go
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# memdbfs
[![Build Status](https://travis-ci.org/nak3/memdbfs.svg?branch=master)](https://travis-ci.org/nak3/memdbfs)
What is memdbfs?
---
memdbfs is a file system built on [go-memdb](https://github.com/hashicorp/go-memdb). It uses memdb as a backend storage.Status
---
memdbfs is an experimental project by [@nak3](https://github.com/nak3). Currently it does not aim to practicable use.Usage
---
~~~
make deps
make build
mkdir -p /tmp/memdbfs/mnt
./bin/memdbfs /tmp/memdbfs/mnt
~~~Now you can test the mount point `/tmp/memdbfs/mnt`. Again, this repository is still experimental status so there are some unsupported file operations.
_NOTE_ You need fuse package for your host first. Please follow each distribution's steps.
Acknowledgment
---
memdb is built on [go-memdb](https://github.com/hashicorp/go-memdb)@hashicorp and [fuse](bazil.org/fuse/fs)@bazil.org. I have refered to [example-go/filesystem](https://github.com/cockroachdb/examples-go/tree/master/filesystem)@cockroachdb for the fuse implementation.