fixed nostore -> no-store

This commit is contained in:
Patrick Werner 2019-07-10 16:31:22 +02:00 committed by GitHub
parent 0fb8db11a2
commit 9b938262e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -276,7 +276,7 @@ public DaoConfig daoConfig() {
If the client knows that they will only want a small number of results
(for example, a UI containing 20 results is being shown and the client
knows that they will never load the next page of results) the client
may also use the <code>nostore</code> directive along with a HAPI FHIR
may also use the <code>no-store</code> directive along with a HAPI FHIR
extension called <code>max-results</code> in order to specify that
only the given number of results should be fetched. This directive
disabled paging entirely for the request and causes the request to
@ -285,7 +285,7 @@ public DaoConfig daoConfig() {
</p>
<div class="source">
<pre>
Cache-Control: nostore, max-results=20
Cache-Control: no-store, max-results=20
</pre>
</div>