mecrazycoder has asked for the wisdom of the Perl Monks concerning the following question:

Hi Monks, I thought of writing user-space file system using FUSE in Perl. But I don't find any proper tutorials or documentation on FUSE Perl. I came across cpan module FUSE but it don't contain much details. So can anyone here provide me with tutorial for FUSE Perl. Thanks in advance

Replies are listed 'Best First'.
Re: Using FUSE in Perl
by ambrus (Abbot) on Nov 16, 2011 at 07:56 UTC
Re: Using FUSE in Perl
by Anonymous Monk on Nov 16, 2011 at 07:56 UTC

    Fuse comes with 5 examples, not counting the test suite, which documents the entire API.

    There literally is nothing to it.

    Its like perltie, you define some common functions (open/close/read/stat/chmod ...) to do what you need

    Unlike perltie, it works outside of perl