mirror of
https://github.com/NixOS/nix
synced 2025-06-25 10:41:16 +02:00
One line per sentence in markdown docs.
This commit is contained in:
parent
f2fe9822c1
commit
f5d83a8029
2 changed files with 12 additions and 16 deletions
|
@ -220,17 +220,13 @@ constexpr std::array<ExperimentalFeatureDetails, 14> xpFeatureDetails = {{
|
|||
.description = R"(
|
||||
Allow the use of the `read-only` parameter in local store URIs.
|
||||
|
||||
Set this parameter to `true` to allow stores with databases on read-only
|
||||
filesystems to be opened for querying; ordinarily Nix will refuse to do this.
|
||||
Set this parameter to `true` to allow stores with databases on read-only filesystems to be opened for querying; ordinarily Nix will refuse to do this.
|
||||
|
||||
This is because SQLite requires write access to the database file to perform
|
||||
the file locking operations necessary for safe concurrent access. When `read-only`
|
||||
is set to `true`, the database will be opened in immutable mode.
|
||||
This is because SQLite requires write access to the database file to perform the file locking operations necessary for safe concurrent access.
|
||||
When `read-only` is set to `true`, the database will be opened in immutable mode.
|
||||
|
||||
Under this mode, SQLite will not do any locking at all, so you should be certain
|
||||
that the database will not be changed. While the filesystem the database resides
|
||||
on might be read-only to this process, consider whether another user, process,
|
||||
or system, might have write access to it.
|
||||
Under this mode, SQLite will not do any locking at all, so you should be certain that the database will not be changed.
|
||||
While the filesystem the database resides on might be read-only to this process, consider whether another user, process, or system, might have write access to it.
|
||||
)",
|
||||
},
|
||||
}};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue