perl-fuse icon indicating copy to clipboard operation
perl-fuse copied to clipboard

write filesystems in Perl using FUSE

Results 5 perl-fuse issues
Sort by recently updated
recently updated
newest added

FUSE treats threads as light-weight objects and creates/deletes them frequently. This leads to a new perl interpreter being created for all new threads, but never being reclaimed/reused when a thread...

Hi again :) This is a sister-PR to #22 for your convenience. If you want to keep using semantic (double-dotted) versions for Fuse, feel free to delete #22. But if...

Hi again :) Perl Fuse has historically used single-dotted version numbers (0.1, 0.2, ..., 0.15, 0.16) for its distributions, but the latest version changed to double-dotted semantic versioning (0.16.1). This...

Currently, we don't support multiple threads each setting up a fuse file system if at least one of them also wants threaded callbacks. This test program: #!/usr/bin/perl use threads; use...