]> git.immae.eu Git - github/wallabag/wallabag.git/commit - composer.json
Enable Redis async import
authorJeremy Benoist <jeremy.benoist@gmail.com>
Fri, 9 Sep 2016 19:02:03 +0000 (21:02 +0200)
committerJeremy Benoist <jeremy.benoist@gmail.com>
Sun, 11 Sep 2016 19:58:56 +0000 (21:58 +0200)
commitb3437d58ae224121375c99e9288d8b808524e624
tree94ce3446aed4396ba9304b8c97e421eba35e4edf
parent7f7531171f6e49110b5842f869e37c766a682473
Enable Redis async import

- using javibravo/simpleue
- internal config value are now `import_with_redis` & `import_with_rabbit` which are more clear
- if both option are enable rabbit will be choosen
- services imports related to async are now splitted into 2 files: `redis.yml` & `rabbit.yml`
-
28 files changed:
app/config/config.yml
app/config/parameters.yml.dist
composer.json
src/Wallabag/CoreBundle/Command/InstallCommand.php
src/Wallabag/CoreBundle/DataFixtures/ORM/LoadSettingData.php
src/Wallabag/CoreBundle/Resources/config/services.yml
src/Wallabag/ImportBundle/Command/RedisWorkerCommand.php [new file with mode: 0644]
src/Wallabag/ImportBundle/Consumer/AMPQEntryConsumer.php [moved from src/Wallabag/ImportBundle/Consumer/AMPQ/EntryConsumer.php with 90% similarity]
src/Wallabag/ImportBundle/Consumer/RedisEntryConsumer.php [new file with mode: 0644]
src/Wallabag/ImportBundle/Controller/PocketController.php
src/Wallabag/ImportBundle/Controller/ReadabilityController.php
src/Wallabag/ImportBundle/Controller/WallabagV1Controller.php
src/Wallabag/ImportBundle/Controller/WallabagV2Controller.php
src/Wallabag/ImportBundle/Import/AbstractImport.php
src/Wallabag/ImportBundle/Redis/Producer.php [new file with mode: 0644]
src/Wallabag/ImportBundle/Resources/config/rabbit.yml [new file with mode: 0644]
src/Wallabag/ImportBundle/Resources/config/redis.yml [new file with mode: 0644]
src/Wallabag/ImportBundle/Resources/config/services.yml
tests/Wallabag/ImportBundle/Consumer/AMPQEntryConsumerTest.php [moved from tests/Wallabag/ImportBundle/Consumer/AMPQ/EntryConsumerTest.php with 96% similarity]
tests/Wallabag/ImportBundle/Consumer/RedisEntryConsumerTest.php [new file with mode: 0644]
tests/Wallabag/ImportBundle/Controller/PocketControllerTest.php
tests/Wallabag/ImportBundle/Controller/ReadabilityControllerTest.php
tests/Wallabag/ImportBundle/Controller/WallabagV1ControllerTest.php
tests/Wallabag/ImportBundle/Controller/WallabagV2ControllerTest.php
tests/Wallabag/ImportBundle/Import/PocketImportTest.php
tests/Wallabag/ImportBundle/Import/ReadabilityImportTest.php
tests/Wallabag/ImportBundle/Import/WallabagV1ImportTest.php
tests/Wallabag/ImportBundle/Import/WallabagV2ImportTest.php