Screenshot 2023-01-01 at 5.52.39 PM.png
# framework-elide
s
Screenshot 2023-01-01 at 5.52.39 PM.png
future optimizations: • do away with JimFS in favor of purely backing it with
RandomAccessFile
and a compressed flatbuffer • implementation that proxies to pure mmap or something, idk
this would be cool because, say you have
app.evfs
, or something. and just like a JAR. you can simply rename it to
app.tar
and unpack it to inspect the contents. you would get:
Copy code
> mv app.evfs app.tar
> tar -xvf app.tar
> ls
metadata.cfb  fsdata.tar.lz4  artifacts.json.gz
and you could
Copy code
> gzip -d artifacts.json.gz
> jq artifacts.json ...
to query around if you wanted.