▲ | Dylan16807 5 days ago | |||||||||||||||||||||||||||||||
Can you list some realistic workflows where people would be touching the same huge file but only changing much smaller parts of it? And yes you can represent a whole repo as a giant tar file, but because the boundaries between hash segments won't line up with your file boundaries you get an efficiency hit with very little benefit. Unless you make it file-aware in which case it ends up even closer to what git already does. Git knows how to store deltas between files. Making that mechanism more reliable is probably able to achieve more with less. | ||||||||||||||||||||||||||||||||
▲ | bobmcnamara 5 days ago | parent | next [-] | |||||||||||||||||||||||||||||||
Most Microsoft office documents. One of our projects has a UI editor with a 60MB file for nearly everything except images, and people work on different UI flows at the same time. | ||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||
▲ | jiggawatts 5 days ago | parent | prev [-] | |||||||||||||||||||||||||||||||
Binary database files containing “master data”. Merging would require support from the DB engine, however. |