- Documentation (2.2.0)
- Release Notes
- Tutorials
- Reference
- Developer doc
lock-strategies
Tag: lock-strategies since 2.0 Defines a list of lock strategies usable in Ivy. A lock strategy is used by a cache manager to decide when and how locking should be performed (see settings/cache to see how to configure the lock strategy to use).
Two lock strategies are registered by default:
- no-lock This lock strategy actually performs no locking at all, and thus should not be used in an environment where the cache is shared by multiple processes.
- artifact-lock This strategy acquires a lock whenever a module descriptor or an artifact is downloaded to the cache, which makes a good solution when you want to share your repository cache.
This strategy is implemented by (NoLockStrategy)
Note that this strategy is based on file locking, performed by default using the java.io.File.createNewFile() atomicity (which is documented as atomic in the javadoc, but not recommended to perform locks). A java.nio.FileLock based implementation is also provided, but according to our tests the createNewFile based one performs better and more reliably. We heavily recommend making your own testing in your target environment before relying on this lock strategy for heavily concurrent operations.
This strategy is implemented by (ArtifactLockStrategy)
Child elements
Element | Description | Cardinality |
---|---|---|
any lock strategy | adds a lock strategy to the list of available ones | 0..n |