Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@lage-run/cache
Advanced tools
This package provides:
Cache
interfacebackfill
import { BackfillCacheProvider, RemoteFallbackCacheProvider, TargetHasher } from "@lage-run/cache";
const cacheOptions = {
internalCacheFolder: ".cache",
outputGlob: ["dist/**", "lib/**"]
}
const root = getWorkspaceRoot(cwd);
const remoteFallbackCacheProviderOptions = {
root,
localCacheProvider: cacheOptions.skipLocalCache ? undefined : new BackfillCacheProvider({
root,
cacheOptions: {
outputGlob: ["dist/**"]
}
}),
remoteCacheProvider: new BackfillCacheProvider({
root,
{
cacheStorageOptions: {
provider: "azure-blob",
options: {
connectionString: "asdfasdfasdfafds"; // Providing an un-authenitcated Blob Service Endpoint will force use of Azure DefualtAzureCredentials
container: "container";
maxSize?: 150;
}
},
...cacheOptions
writeRemoteCache: true,
outputGlob: ["dist/**", "lib/**"]
},
isReadOnly: cacheOptions.writeRemoteCache !== true,
})
}
const cacheProvider = new RemoteFallbackCacheProvider(remoteFallbackCacheProviderOptions);
const hasher = new TargetHasher({
root,
environmentGlob: ["lage.config.js"],
cacheKey: "some cache key",
})
let hash: string | null = null;
let cacheHit = false;
if (target.cache && !skipCaching) {
hash = await hasher.hash(target, cliArgs);
if (hash && !shouldResetCache) {
cacheHit = await cacheProvider.fetch(hash, target);
}
}
// DO TARGET RUN ACTIONS
// ...
await cacheProvider.put(hash, target);
To specifically differentiate the hash generated for the cache, between different steps the parameter cacheKey
can be used. The parameter will be a part of the hash generation for the cache, and generated hash can be altered by modifying the parameter.
Add the parameter in your lage.config.js
as follows
{
cacheOptions: {
cacheKey: "some cache key";
}
}
FAQs
Cache for Lage
We found that @lage-run/cache demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.