Mercurial > hg > orthanc-databases
annotate TODO @ 337:8f109cfbfc5d
updated README
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 11 Aug 2021 11:49:56 +0200 |
parents | cc7af42d4f23 |
children | 1d57fac91104 |
rev | line source |
---|---|
196 | 1 |
2 ============================== | |
3 == Orthanc database plugins == | |
4 ============================== | |
5 | |
6 ----------------------- | |
7 Common - Database index | |
8 ----------------------- | |
9 | |
258 | 10 * Performance of joins in LookupResources: Create cached statement for |
11 LookupResources, that are grouped to search up to, say, 10 tags, | |
12 instead of recompiling for each request | |
13 | |
196 | 14 |
15 --------------------- | |
16 Common - Storage area | |
17 --------------------- | |
18 | |
19 * Implement the "StoreDicom" option from the default filesystem | |
20 storage area to run MySQL/PostgreSQL storage in index-only mode: | |
21 https://book.orthanc-server.com/contributing.html | |
22 | |
259 | 23 * Performance: Add a pool of connections to PostgreSQL/MySQL, as |
24 already done in the database index plugins | |
25 | |
196 | 26 |
27 ----- | |
28 MySQL | |
29 ----- | |
30 | |
266
cc7af42d4f23
Store revisions for metadata and attachments in PostgreSQL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
259
diff
changeset
|
31 * Store revisions for metadata and attachments in MySQL (this is |
cc7af42d4f23
Store revisions for metadata and attachments in PostgreSQL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
259
diff
changeset
|
32 already implemented in PostgreSQL) |
cc7af42d4f23
Store revisions for metadata and attachments in PostgreSQL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
259
diff
changeset
|
33 |
196 | 34 * MySQL performance => implement GlobalProperty_GetTotalSizeIsFast: |
35 https://groups.google.com/d/msg/orthanc-users/kSR4a110zDo/D7e4ITR8BwAJ | |
258 | 36 |
37 * Add index to speed up wildcard search, as already done in PostgreSQL: | |
38 | |
39 - https://dev.mysql.com/doc/refman/5.5/en/fulltext-search.html + | |
40 ALTER TABLE table ADD FULLTEXT index_name(column1); | |
41 | |
42 - https://dev.mysql.com/doc/refman/8.0/en/index-btree-hash.html |