Skip to content

Commit

Permalink
Merge pull request #420 from jackalope/fix-cache-documentation
Browse files Browse the repository at this point in the history
Adjust documentation of repository factory to mention PSR-16 simple cache
  • Loading branch information
dbu authored Mar 17, 2023
2 parents a89e55a + f6ebfd2 commit 3af9844
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Jackalope/RepositoryFactoryDoctrineDBAL.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class RepositoryFactoryDoctrineDBAL implements RepositoryFactoryInterface
self::JACKALOPE_CHECK_LOGIN_ON_SERVER => 'boolean: if set to empty or false, skip initial check whether repository exists. Enabled by default, disable to gain a few milliseconds off each repository instantiation.',
self::JACKALOPE_DISABLE_TRANSACTIONS => 'boolean: if set and not empty, transactions are disabled, otherwise transactions are enabled. If transactions are enabled but not actively used, every save operation is wrapped into a transaction.',
self::JACKALOPE_DISABLE_STREAM_WRAPPER => 'boolean: if set and not empty, stream wrapper is disabled, otherwise the stream wrapper is enabled and streams are only fetched when reading from for the first time. If your code always uses all binary properties it reads, you can disable this for a small performance gain.',
self::JACKALOPE_DATA_CACHES => 'array: an array of \Doctrine\Common\Cache\Cache instances. keys can be "meta" and "nodes", should be separate namespaces for best performance.',
self::JACKALOPE_DATA_CACHES => 'array: an array of PSR-16 SimpleCache or Doctrine Cache instances. keys can be "meta" and "nodes", should be separate namespaces for best performance.',
self::JACKALOPE_LOGGER => 'Psr\Log\LoggerInterface: Use the LoggingClient to wrap the default transport Client',
Session::OPTION_AUTO_LASTMODIFIED => 'boolean: Whether to automatically update nodes having mix:lastModified. Defaults to true.',
];
Expand Down

0 comments on commit 3af9844

Please sign in to comment.