This message was deleted.
# community-support
s
This message was deleted.
c
not aware of size limits on caches; which cache are you referring to and what is the limit you are encountering?
p
The local build cache uses a system directory to store tasks outputs. The default location is the Gradle user home directory that points to _$USER_HOME/.gradle/caches_. Every time we run the build in our system, artifacts will be stored here. Wanted to see if there is a scope to increase space.
c
Is there a gradle limit on size that you are encountering?
v
Or what do you mean with "a scope"? You can configure the Gradle user home to be somewhere else if you are running out of disk space and meant that.
p
I am not running into disk space Issue, on the contrary I am not using enough space offered by the server and was looking to see how local can store more and inturn I can have the build run faster if it fetches from local cache.
https://docs.gradle.org/current/userguide/build_cache.html Looking at the article I will try using below flag to expand the retention of local cache.
Copy code
removeUnusedEntriesAfterDays
👌 1