Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go-fuse
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Levin Zimmermann
go-fuse
Commits
aa1cd52e
Commit
aa1cd52e
authored
May 01, 2011
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document benchmark results.
parent
c0a73064
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
7 deletions
+20
-7
README
README
+14
-7
example/benchmark.sh
example/benchmark.sh
+6
-0
No files found.
README
View file @
aa1cd52e
...
...
@@ -4,11 +4,11 @@ GO-FUSE: native bindings for the FUSE kernel module.
HIGHLIGHTS
* High speed:
within a factor 1.5 of C/C++ based filesystems on
filesystem benchmarks, using the gc compiler. For many real world
applications, the difference will
be negligible.
* High speed:
less than 25% slower than libfuse, using the gc
compiler. For almost all real world applications, the difference will
be negligible.
* Supports in-process mounting of different
Path
FileSystems onto
* Supports in-process mounting of different FileSystems onto
subdirectories of the FUSE mount.
* Includes two fleshed out examples, zipfs and unionfs.
...
...
@@ -25,6 +25,14 @@ EXAMPLES
ls /tmp/mountpoint
fusermount -u /tmp/mountpoint
* Zipfs is also used for benchmarking: a script to measures threaded
stat performance is in example/benchmark.sh. A libfuse baseline is
given by running the same test against archivemount
(http://www.cybernoia.de/software/archivemount/).
Currently, zipfs/Go-FUSE is about 20% slower than
archivemount/libfuse..
* examplelib/multizipfs.go shows how to use in-process mounts to
combine multiple Go-FUSE filesystems into a larger filesystem.
...
...
@@ -58,7 +66,6 @@ Tested on:
- x86 64bits (Ubuntu Lucid).
CREDITS
* Inspired by Taru Karttunen's package, https://bitbucket.org/taruti/go-extra.
...
...
@@ -75,9 +82,9 @@ KNOWN PROBLEMS
Grep source code for TODO. Major topics:
* Missing support for file locking: FUSE_GETLK, FUSE_SETLK, FUSE_SETLKW
, STATFS
* Missing support for file locking: FUSE_GETLK, FUSE_SETLK, FUSE_SETLKW
* Missing support for FUSE_INTERRUPT, FUSE_NOTIFY, CUSE, BMAP, POLL, IOCTL
* Missing support for FUSE_INTERRUPT, FUSE_NOTIFY, CUSE, BMAP, POLL, IOCTL
, STATFS
LICENSE
...
...
example/benchmark.sh
View file @
aa1cd52e
...
...
@@ -4,6 +4,12 @@
# so let's time that. We use zipfs which runs from memory to minimize
# noise due to the filesystem itself.
if
[
"
$1
"
==
""
]
;
then
echo
"Usage: benchmark.sh ZIPFILE"
echo
"The zipfile should be large (> 10000 files)."
exit
2
fi
set
-eux
ZIPFILE
=
$1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment