TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

How We Deploy Our Clojure Services

66 点作者 kyleburton超过 14 年前

3 条评论

arohner超过 14 年前
We built our own .deb containing all our bits, that depends on external dependencies. The .deb recipe is checked into source. Our deploy process is<p><pre><code> 1) compile the .deb. 2) spawn a new, empty EC2 3) apt-get the .deb 4) lein daemon start (http://github.com/arohner/lein-daemon)</code></pre>
评论 #1637124 未加载
rjurney超过 14 年前
Clojure is very interesting to me as a way to build and deploy services backed by machine learning. Interesting enough to make me learn LISP :)<p>In particular, two libraries are enormously useful:<p><a href="http://github.com/bradford/infer" rel="nofollow">http://github.com/bradford/infer</a> <a href="http://github.com/afeinberg/clomert" rel="nofollow">http://github.com/afeinberg/clomert</a><p>You can use Hadoop with infer to build your model, fill a Voldemort cluster from Hadoop directly, then also serve your model using infer. All with very little code. That is mucho win.
jacquesm超过 14 年前
Isn't that a huge obstacle to overcome to get clojure to become self-hosting? After all, the fact that it has access to java's libraries is a huge plus.
评论 #1637453 未加载