python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Scrapy with Celery not running on Docker container
I code a Scrapy CrawlerProcess to run from script.
It also uses Celery+RabbitMQ for controlling the urls to be scrapped.
The update.py script sends the urls to RabbitMQ, and the Celery worker runs the...
Sandro Wiggers
Votes: 0
Answers: 0
Reactor parallel service calls, take first available with some priority ordering
I'm trying to use Reactor Core to make multiple service calls in parallel and first available result based on priority of results.
That is, I want to return the first result available and not wait for...
Chris
Votes: 0
Answers: 1
Reactor, best practice to retrieve nested (multiple levels) objects?
Suppose the following objects :
public class Employee {
private Address address;
public class Address {
private String street;
private String country;
Which of the two following proces...
lgean
Votes: 0
Answers: 1
Should parallel API call use Schedulers.parallel() or Schedulers.boundedElastic()
To be honest I have no idea how schedulers work in reactor. I have read few of them and this what I found.
Schedulers.parallel() is good for CPU-intensive but short-lived tasks.
It can execute N such...
Patrick
Votes: 0
Answers: 1