It would be nice to add to the Client interface the ability to batch queue jobs. In our case we need to batch queue around 40-100k jobs and it would be nice to do it in a single pipeline w/ Jedis.
void enqueue(String queue, List<Job> jobs); // Or Job...
It would be nice to add to the
Clientinterface the ability to batch queue jobs. In our case we need to batch queue around 40-100k jobs and it would be nice to do it in a single pipeline w/ Jedis.