我想将自己的功能添加到Cassandra。
例如,我希望cassandra在开始时说hello world
(请不要告诉我可以通过修改bash脚本来完成)。
class HelloWorldApp {
public static void main(String[] args) {
System.out.println("Hello World!");
}}
任何人都知道,我怎么能这样做?换句话说,如果我有手工制作的剧本,我怎么能让Cassandra去做呢?
答案 0 :(得分:2)
愿你正在寻找:How to Contribute to Cassandra
它解释了从下载cassandra源代码到提交补丁的所有内容。
首先(如果您习惯使用Eclipse),您可能会发现这有用:Running Cassandra In Eclipse