2024年Clojure状态调查!分享您的想法。

欢迎!有关如何使用本页面的更多信息,请参阅关于页面。

0
Clojure CLI
重新标记

当我在同一项目中运行两个或更多个clojure实例(参数不同)时,它们最终会竞争同一目录中创建的同一缓存文件夹。在这种情况下,我们看到的错误是“找不到或加载主类clojure.main”。有时还有其他错误。

如果正确理解了脚本的逻辑,它会选择当前目录作为缓存,并使用参数的组合哈希作为唯一标识符,但在我这个情况下,生成的文件夹是相同的。

# Determine whether to use user or project cache
if [[ -f deps.edn ]]; then
  cache_dir=.cpcache
else
  cache_dir="$user_cache_dir"
fi

很希望要么引入一种锁定机制以防止竞争情况,要么作为解决方案提供一种指定额外缓存目录参数或使用的校验和的选项。

可能的解决方案

diff --git a/src/main/resources/clojure/install/clojure b/src/main/resources/clojure/install/clojure
index 67272b7..53fd7ec 100755
--- a/src/main/resources/clojure/install/clojure
+++ b/src/main/resources/clojure/install/clojure
@@ -22,6 +22,7 @@ jvm_opts=()
 resolve_aliases=()
 classpath_aliases=()
 repl_aliases=()
+cache_extra=
 mode="repl"
 while [ $# -gt 0 ]
 do
@@ -108,6 +109,11 @@ do
       deps_data="${1}"
       shift
       ;;
+    -Scache)
+      shift
+      cache_extra="${1}"
+      shift
+      ;;
     -Scp)
       shift
       force_cp="${1}"
@@ -197,7 +203,7 @@ if "$help"; then
 	on the JVM, e.g. to start a REPL or invoke a specific function with data.
 	The Clojure tools will configure the JVM process by defining a classpath
 	(of desired libraries), an execution environment (JVM options) and
-	specifying a main class and args. 
+	specifying a main class and args.
 
 	Using a deps.edn file (or files), you tell Clojure where your source code
 	resides and what libraries you need. Clojure will then calculate the full
@@ -234,6 +240,7 @@ if "$help"; then
 	 -Spath         Compute classpath and echo to stdout only
 	 -Spom          Generate (or update) pom.xml with deps and paths
 	 -Stree         Print dependency tree
+	 -Scache CACHE  Provide arbitrary data to include into cache hash
 	 -Scp CP        Do NOT compute or cache classpath, use this one instead
 	 -Srepro        Ignore the ~/.clojure/deps.edn config file
 	 -Sforce        Force recomputation of the classpath (don't use the cache)
@@ -320,7 +327,7 @@ else
 fi
 
 # Construct location of cached classpath file
-val="$(join '' ${resolve_aliases[@]})|$(join '' ${classpath_aliases[@]})|$(join '' ${repl_aliases[@]})|$exec_aliases|$main_aliases|$deps_data|$tool_name|$tool_aliases"
+val="${cache_extra}|$(join '' ${resolve_aliases[@]})|$(join '' ${classpath_aliases[@]})|$(join '' ${repl_aliases[@]})|$exec_aliases|$main_aliases|$deps_data|$tool_name|$tool_aliases"
 for config_path in "${config_paths[@]}"; do
   if [[ -f "$config_path" ]]; then
     val="$val|$config_path"

1 答案

0
by

Jira 上的问题 TDEPS-119 与另一件事相关,其解决方案可能也会解决您的问题。

by
关于该问题有一条评论,我有答案。

> Stanislav Yurin
> 2019年2月26日,凌晨12:33

> 对不起,我在任何地方都找不到那个脚本的仓库源代码,所以无法附加补丁文件。

以下是仓库链接:https://github.com/clojure/brew-install/blob/1.11.1/src/main/resources/clojure/install/clojure

不幸的是,我无法在问题本身上评论。
...