aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Consumer
Commit message (Collapse)AuthorAgeFilesLines
* Jump to Simpleue 2.0Jeremy Benoist2017-11-181-0/+17
| | | | The 1.3.0 tag is introducing BC so we jump to the 2.0
* Add a real configuration for CS-FixerJeremy Benoist2017-07-011-5/+5
|
* Import: we now skip messages when user is nullNicolas LÅ“uillet2017-02-201-1/+2
|
* CleanupJeremy Benoist2016-11-031-0/+1
|
* Add entry.saved event to import & restJeremy Benoist2016-11-021-1/+7
|
* Avoid RabbitMQ consumer to loopJeremy Benoist2016-10-201-2/+3
| | | | When the `parseEntry` returns null it means the entry already exists in the database. Sending `false` as return, will requeue the message which will then loop forever.
* AMPQ -> AMQPJeremy Benoist2016-09-141-1/+1
|
* Re-facto EntryConsumerJeremy Benoist2016-09-113-112/+78
| | | | Using an abstract method allow to share code but also can be used it we add a new broker in the future
* Enable Redis async importJeremy Benoist2016-09-112-2/+88
| | | | | | | | - 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` -
* Fix DateTime & clear()Jeremy Benoist2016-09-111-1/+6
|
* Convert other imports to RabbitJeremy Benoist2016-09-111-7/+7
|
* Send every imported item to the queueJeremy Benoist2016-09-111-0/+63
Instead of queing real Entry to process, we queue all the item to import from Pocket in a raw format. Then, the worker retrieve that information, find / create the entry and save it.