Open elfgoh opened 6 years ago
casync make foobar-a.caibx a.img
casync make foobar-b.caibx b.img
casync extract [path-to-caibx-files]/foobar-a.caibx a-copy.img
casync extract [path-to-caibx-files]/foobar-b.caibx b-copy.img
I see. So the chunk store default.castr
gets bigger over time. Say I am certain that I no longer need a.img
. Is there a way to update the chunk store so that unnecessary chunks can be discarded?
If you have a default.castr that contains a.img, b.img, c.img and you want to keep only b.img and c.img:
casync -v gc b.img c.img
Say I have an image
a.img
which I used to create a chunk store:casync make foobar.caibx a.img
.Later on, I have another img,
b.img
.b.img
is meant to be an upgraded version ofa.img
.How do I update the chunk store that was created based on
a.img
? What is the workflow like?