Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/niamtokik/zfs
Erlang ZFS Implementation
https://github.com/niamtokik/zfs
erlang zfs
Last synced: about 5 hours ago
JSON representation
Erlang ZFS Implementation
- Host: GitHub
- URL: https://github.com/niamtokik/zfs
- Owner: niamtokik
- License: bsd-3-clause
- Created: 2018-01-04T21:07:09.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-07T10:16:13.000Z (almost 7 years ago)
- Last Synced: 2023-07-14T13:29:39.249Z (over 1 year ago)
- Topics: erlang, zfs
- Language: Erlang
- Size: 41 KB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# zfs
Erlang ZFS High and Low Level implementation.
## Usage
This is an Erlang Library, you can use it on any project
based on Licensing.## Documentation
This project is born from one idea, reverse engineering ZFS
as gray box, from the hard way. We want to document every
ZFS aspect and offer a high level implementation to check if
specification and current existing documentation fit well.You can find more documentation in doc directory at the root
of this project.## Build
$ rebar3 compile
## Test
Erlang ZFS implementation is also a test battery for ZFS, you
can run different test to check if our implementation is well
supported on your hardware, but also directly on your OS.For running unit test:
$ rebar3 eunit
For running common_test:
$ rebar3 ct
For running local low level test:
$ cd c_src && make test