2024-01-08 14:53:13 +00:00
## Document Database
The document database contains information about links,
2023-09-14 09:33:36 +00:00
such as their ID, their URL, their title, their description,
and so forth.
2024-01-08 14:53:13 +00:00
The document database is a sqlite file. The reason this information
2023-09-14 09:33:36 +00:00
is not in the MariaDB database is that this would make updates to
this information take effect in production immediately, even before
the information was searchable.
2024-02-28 10:40:11 +00:00
* [DocumentLinkDbWriter ](java/nu/marginalia/linkdb/docs/DocumentDbWriter.java )
* [DocumentLinkDbLoader ](java/nu/marginalia/linkdb/docs/DocumentDbReader.java )
2024-01-08 14:53:13 +00:00
## See Also
2024-02-28 10:40:11 +00:00
The database is constructed by the [loading-process ](../../processes/loading-process ), and consumed by the [index-service ](../../services-core/index-service ).