| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,48 @@ | ||
| { | ||
| "@context": [ | ||
| "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^8.0.0/components/context.jsonld", | ||
| "https://linkedsoftwaredependencies.org/bundles/npm/asynchronous-handlers/^1.0.0/components/context.jsonld" | ||
| ], | ||
| "@graph": [ | ||
| { | ||
| "comment": [ | ||
| "Allows multiple simultaneous read operations. Locks are stored on filesystem. This locker is threadsafe.", | ||
| "Locks expire after inactivity, or 1 hour after acquisition, so continually renewed locks can not block a resource forever." | ||
| ], | ||
| "@id": "urn:solid-server:default:ResourceLocker", | ||
| "@type": "WrappedExpiringReadWriteLocker", | ||
| "locker": { | ||
| "@type": "PartialReadWriteLocker", | ||
| "locker": { | ||
| "@id": "urn:solid-server:default:FileSystemResourceLocker", | ||
| "@type": "FileSystemResourceLocker", | ||
| "args_rootFilePath": { "@id": "urn:solid-server:default:variable:rootFilePath" } | ||
| } | ||
| }, | ||
| "expiration": 6000, | ||
| "maxHoldDuration": 3600000 | ||
| }, | ||
| { | ||
| "@id": "urn:solid-server:default:CleanupInitializer", | ||
| "@type": "SequenceHandler", | ||
| "handlers": [ | ||
| { | ||
| "comment": "Makes sure the FileSystemResourceLocker starts with a clean slate when the application is started.", | ||
| "@type": "InitializableHandler", | ||
| "initializable": { "@id": "urn:solid-server:default:FileSystemResourceLocker" } | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "@id": "urn:solid-server:default:CleanupFinalizer", | ||
| "@type": "SequenceHandler", | ||
| "handlers": [ | ||
| { | ||
| "comment": "Makes sure the lock folder is removed when the application stops.", | ||
| "@type": "FinalizableHandler", | ||
| "finalizable": { "@id": "urn:solid-server:default:FileSystemResourceLocker" } | ||
| } | ||
| ] | ||
| } | ||
| ] | ||
| } | ||
| Back | FazBrowse Home | New Git URL |
Uh oh!
There was an error while loading. Please reload this page.