1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 13:12:41 +00:00

Update PostgreSQL-related documentation

This commit is contained in:
J. King 2018-12-13 20:08:35 -05:00
parent 29e7c1f154
commit 17052d3232
2 changed files with 6 additions and 3 deletions

View file

@ -2,7 +2,10 @@ Version 0.6.0 (????-??-??)
========================== ==========================
New features: New features:
- Support for PostgreSQL databases (via PDO) - Support for PostgreSQL databases
Bug fixes:
- Use a general-purpose Unicode collation with SQLite databases
Changes: Changes:
- Improve performance of common database queries by 80-90% - Improve performance of common database queries by 80-90%

View file

@ -18,7 +18,7 @@ The Arsse has the following requirements:
- [dom](http://php.net/manual/en/book.dom.php), [simplexml](http://php.net/manual/en/book.simplexml.php), and [iconv](http://php.net/manual/en/book.iconv.php) (for picoFeed) - [dom](http://php.net/manual/en/book.dom.php), [simplexml](http://php.net/manual/en/book.simplexml.php), and [iconv](http://php.net/manual/en/book.iconv.php) (for picoFeed)
- Either of: - Either of:
- [sqlite3](http://php.net/manual/en/book.sqlite3.php) or [pdo_sqlite](http://ca1.php.net/manual/en/ref.pdo-sqlite.php) for SQLite databases - [sqlite3](http://php.net/manual/en/book.sqlite3.php) or [pdo_sqlite](http://ca1.php.net/manual/en/ref.pdo-sqlite.php) for SQLite databases
- [pdo_pgsql](http://ca1.php.net/manual/en/ref.pdo-pgsql.php) for PostgreSQL 9.1 or later databases - [pgsql](http://php.net/manual/en/book.pgsql.php) or [pdo_pgsql](http://ca1.php.net/manual/en/ref.pdo-pgsql.php) for PostgreSQL 9.1 or later databases
- Privileges to create and run daemon processes on the server - Privileges to create and run daemon processes on the server
## Installation ## Installation
@ -73,7 +73,7 @@ Please refer to `CONTRIBUTING.md` for guidelines on contributing code to The Ars
## Database compatibility notes ## Database compatibility notes
Functionally there is no reason to prefer either SQLite or PostgreSQL over the other. SQLite, however, is significantly simpler to set up in most cases, requiring only read and write access to a containing directory in order to function. PostgreSQL may perform better than SQLite when serving hundreds of users or more, but this has not been tested. Functionally there is no reason to prefer either SQLite or PostgreSQL over the other. SQLite, however, is significantly simpler to set up in most cases, requiring only read and write access to a containing directory in order to function. On the other hand PostgreSQL may perform better than SQLite when serving hundreds of users or more, but this has not been tested.
## Protocol compatibility notes ## Protocol compatibility notes