Remix.run Logo
Devorlon 2 days ago

Why compile code when ccache faster

amelius 2 days ago | parent [-]

Does ccache fetch compiled code from a central server using checksums?

fishgoesblub 2 days ago | parent | next [-]

buildcache, the program the post is about can use a remote server for storing the cache.

mbitsnbites 2 days ago | parent [-]

And a local cache (kind of level 1 and level 2 caches)

01HNNWZ0MV43FF 2 days ago | parent | prev [-]

sccache can, but most of us don't have access to an sccache instance: https://github.com/mozilla/sccache

firesteelrain 2 days ago | parent | next [-]

We use sccache on prem with MinIO.

mmastrac 2 days ago | parent | prev [-]

sccache is pretty easy to set up and you can back it with S3, memcache, redis, etc.

mbitsnbites 2 days ago | parent [-]

Same with BuildCache, except you also get a fast local cache so you effectively have an L1 and an L2 cache.

In fact, since you also have super fast "direct mode" caching that bypasses the preprocessor (like ccache but unlike sccache), BuildCache really has three logical levels of cache: direct, preprocessor and remote (S3, redis, ...).