- 授权协议: EPL
- 开发语言:
- 操作系统: 跨平台
- 软件首页: https://github.com/antoniogarrote/palermo
- 软件文档: https://github.com/antoniogarrote/palermo
软件介绍
Palermo 是一个基于 JVM 的作业处理系统,其灵感来自于 Resque,后端基于 RabbitMQ。 整个系统采用 Clojure 语言开发。
主要特性:
定义作业 Defining jobs
定义作业队列 Defining job queues
定义 workers
作业的序列化和反序列化
队列管理
Palermo 同时包含一个基于 Web 的前端管理系统,可作为独立的 Jetty 应用来运行。
作业任务:
package palermotests;
import palermo.job.PalermoJob;
public class SleepyJob implements PalermoJob {
public SleepyJob(){}
@Override
public void process(Object arguments) throws Exception {
int timeout = (Integer) arguments;
System.out.println("SLEEPING...");
try {
Thread.sleep(timeout);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("BACK!");
}
}
Algorithms in C, Parts 1-4
Robert Sedgewick / Addison-Wesley Professional / 1997-9-27 / USD 89.99
"This is an eminently readable book which an ordinary programmer, unskilled in mathematical analysis and wary of theoretical algorithms, ought to be able to pick up and get a lot out of.." - Steve Sum......一起来看看 《Algorithms in C, Parts 1-4》 这本书的介绍吧!
