scrachy.settings.defaults.storage.SCRACHY_DB_DATABASE
- scrachy.settings.defaults.storage.SCRACHY_DB_DATABASE: str | None = None
For sqlite this is the path to the database file and it will be created if it does not already exist. For other dialects this is the name of the database where the cached items will be stored. The database must exist prior to running any crawlers, but the backend will create all necessary tables. This requires that the database user have sufficient privileges to do so. If the value is
Nonefor the sqlite dialect, an in memory database will be used (which is probably not what you want). For all other dialectsNoneis not permitted.