4

嘿,我是 Clojure 和 Leiningen 的新手,有点卡住了。我已经设法与 Leiningen 建立了一个项目。我可以将它编译成一个 uberjar 并运行repl. 我还设法加载了一个名为aleph运行简单并发网络服务器的依赖项。

对我来说下一步是使用redis-clojure访问redis。但在这里我被困住了。这是我的project.clj

(defproject alpha "0.0.1-SNAPSHOT"
  :description "Just an alpha test script"
  :main alpha.core
  :dependencies [[org.clojure/clojure "1.2.0"]
                 [org.clojure/clojure-contrib "1.2.0"]
                 [aleph, "0.1.2-SNAPSHOT"]
                 [redis-clojure "1.2.4"]])

这是我的core.clj:请注意,我仅(:requre redis)根据 redis-clojure 中的示例添加了该行。

(ns alpha.core
  (:require redis)
  (:gen-class))

(use `aleph.core 'aleph.http)

(defn alpha [channel request]
  (let [] (enqueue-and-close channel
                     {:status 200
                      :header {"Content-Type" "text/html"}
                      :body "Hello Clojure World!"}))
          (println (str request)))

(defn -main [& args]
  (start-http-server alpha {:port 9292}))

当我尝试运行lein repl时会发生这种情况:

java.io.FileNotFoundException: Could not locate redis__init.class or redis.clj on classpath:  (core.clj:1)

是的,我已经运行lein deps并且 redis-clojure jar 在我的lib目录中可用。我可能遗漏了一些微不足道的东西,但我已经在这个问题上待了几个小时,并且没有更接近解决方案。谢谢!

4

2 回答 2

8

命名空间redis不存在。我想你需要

(:require [redis.core :as redis])

检查可用命名空间的方法:

(use 'clojure.contrib.find-namespaces)
(filter #(.startsWith (str %) "redis") (find-namespaces-on-classpath))
于 2010-11-02T17:17:08.473 回答
1

这适用于最新版本的 Clojure,在此示例中,它查找包含子字符串“jdbc”的所有命名空间的名称:

(map str
  (filter
    #(> (.indexOf (str %) "jdbc") -1)
    (all-ns)))

结果是一个序列,例如:

=>
(“clojure.java.jdbc”)
于 2012-06-14T11:52:44.210 回答