Is there already FUSE filesystem that serialise each request to stream?
- by Vi
Concept:
nc -lp 1234 -e fusexmp_server
nc 127.0.0.1 1234 -c "fusestream /mnt/tmp"
Advantages are:
Easy implementation of servers in high level language (without need of any arch-dependent things like JNI or whatever)
Simple ad-hoc networking filesystem out of the box.
Accessibility without actual FUSE (when it is inaccessible):
nc -lp 1234 -e fusexmp_server&
fakefusestream 127.0.0.1 1234
% ls
bin lib usr proc etc
% get /etc/hosts
% exit
Is there already such thing or I should implement it?