Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/clojure/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Clojure lein REPL服务器启动超时_Clojure_Leiningen_Read Eval Print Loop_Datomic - Fatal编程技术网

Clojure lein REPL服务器启动超时

Clojure lein REPL服务器启动超时,clojure,leiningen,read-eval-print-loop,datomic,Clojure,Leiningen,Read Eval Print Loop,Datomic,在一个基于liberator的clojure项目中,我们使用datomic作为数据库。在将本地开发数据库迁移到S3托管数据库并在project.clj上添加所需的依赖项之后,我们无法启动REPL,但解放者堆栈在lein run 我的猜测是DB连接把事情搞砸了,所以,问题是,我怎样才能“调试”或找出这lein repl超时的原因 我的项目.clj (defproject myproject "0.1.0-SNAPSHOT" :main myproject.core :jvm-opts ["

在一个基于liberator的clojure项目中,我们使用datomic作为数据库。在将本地开发数据库迁移到S3托管数据库并在project.clj上添加所需的依赖项之后,我们无法启动REPL,但解放者堆栈在
lein run

我的猜测是DB连接把事情搞砸了,所以,问题是,我怎样才能“调试”或找出这
lein repl
超时的原因

我的项目.clj

(defproject myproject "0.1.0-SNAPSHOT"
  :main myproject.core
  :jvm-opts ["-Xmx1G"]
  :datomic {:schemas ["resources" ["myproject-schema.edn" ]]}
  :plugins [[lein-ring "0.8.10"]]
  ; cp bin/transactor config/samples/free-transactor-template.properties resources/transactor.properties
  :profiles {:dev
             {:datomic {
                        ; :config resources/transactor.properties
                        ; :db-uri "datomic:free://127.0.0.1:4334/myproject"}
                        :db-uri "datomic:ddb://us-east-1/datomica/myproject"}

 :dependencies [[ring-mock "0.1.5"]
                             [midje "1.5.1"]
                             ]
              }
             }
  :dependencies [[org.clojure/clojure "1.5.1"]
                 [com.datomic/datomic-pro "0.9.4556"]
                 ; [com.datomic/datomic-free "0.9.4470"]
                 [com.cemerick/friend "0.2.0"]
                 [liberator "0.10.0"]
                 [compojure "1.1.5"]
                 [http-kit "2.1.13"]
                 [cheshire "5.1.1"]
                 [ring/ring-jetty-adapter "1.1.0"]
                 [ring/ring-devel "1.2.0"]
                 [org.clojure/clojure-contrib "1.2.0"]
                 [url62 "1.0.0-SNAPSHOT"]
                 [clj-http "0.7.8"]
                 [org.clojars.nathell/clojure-contrib "1.2.0"]
                 [com.taoensso/timbre "3.0.0-RC4"]
                 [clj-aws-s3 "0.3.8"]
                 [image-resizer "0.1.5"]
                 [pandect "0.3.1"]
                 [base64-clj "0.1.1"]
                 ]
    :ring {
           :handler myproject.core
           }
)
My profiles.clj

cat ~/.lein/profiles.clj                                                           
{:user {:dependencies [[slamhound "1.5.0"]]
        :aliases {"slamhound"["run" "-m" "slam.hound"]}
        :plugins [[lein-datomic "0.2.0"]
                  [lein-midje "3.0.0"]
                                  [lein-html5-docs "2.0.0"]
                                  [lein-pprint "1.1.2-SNAPSHOT"]]
                ; :datomic {:install-location "/opt/datomic-free"}
                :datomic {:install-location "/opt/datomic-pro/"}
                }
}%      
我的.zshrc

export CLASSPATH=$CLASSPATH:/home/user:/opt/datomic-pro:.
我的环境

Leiningen 2.3.3 on Java 1.7.0_25 OpenJDK 64-Bit Server VM
Linux 3.8.0-35-generic #50-Ubuntu SMP Tue Dec 3 01:24:59 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux

有时需要一段时间才能把所有的鸭子整理好。在project.clj文件中指定
:repl options
,超时时间更长,如下所示:

:repl-options {
             ;; If nREPL takes too long to load it may timeout,
             ;; increase this to wait longer before timing out.
             ;; Defaults to 30000 (30 seconds)
             :timeout 120000
             }

希望这能起到作用。

原因是对多个文件之间的Datomic连接进行了多次重新定义和评估

(def conn (d/connect DATOMIC_URI))

本主题的解决方案已在project.clj中的字段:repl options中设置超时值中讨论过,默认值为30000(30秒)。 例如:

:repl-options{:timeout 120000}

Stuart Sierra的组件模式/lib也很好地解决了这个问题。谢谢,这个答案还帮助我配置了nREPL,因为我不知道这个选项。