English 中文(简体)
在衣着使用STM的读者
原标题:Readers-writers using STM in Clojure
  • 时间:2011-11-22 18:10:25
  •  标签:
  • clojure
  • stm

读写者问题有以下版本:多位读写者和作者、2个或2个以上读写者可以同时阅读,如果作者没有读写能力的话,如果所有作者都有相同的机会书写,则更可取(例如,100发5名作者应写约20倍)。 在使用STM的Clojure实施这种做法的恰当方式是什么? 我不想寻求一部完整的法典,只是一些总体方向。

最佳回答

衣着的STM给你提供了比这更严格的保证。 相互等待,但读者在撰写文章时仍然可以读到;它只是看到了最一贯的情况。 如果作者没有书写,读者根本看不到改动。

问题回答

装设STM的服装实际上可以包括你所寻求的所有制约因素,因为路透器永远不会等待作者,而且你的要求要求读者等待。

如果你能够原谅不阻挡读者,你可以走下去。

(. (java.lang.Thread. #(dosync (write stuff)) start))
(. (java.lang.Thread. #(dosync (read stuff)) start))

如果你们需要读者阻挡,那么你需要不同的STM,那么世界就有很多这样的机会。

正如其他答复中提到的,读物者在阅读时不会打脚石,你想让读者阻止你作为“作者”执行,因为“作者”在其背书功能中写出同样的价值。 我知道,这是令人ir慕的解决办法,但这可能有助于你走出来或给你一些进一步的方向。





相关问题
How to improve Clojures error messages

I ve been playing a bit with Clojure and so far is fairly impressed, but one thing that I keep running into is wierd error messages from Clojure. This comes in two forms: Java errors, like null ...

clojure rmi classpath problem

I am trying to use clojure to implement a "plugin" for some vendor supplied software. Here is a little background on the vendor supplied software. It expects me to implement a particular interface ...

Help translating this Java codeblock to Clojure?

I m getting my feet wet with Clojure, and trying to get used to functional programming. I ve been translating various imperative functions from other languages into their Clojure equivalents -- and ...

Is functional Clojure or imperative Groovy more readable?

OK, no cheating now. No, really, take a minute or two and try this out. What does "positions" do? Edit: simplified according to cgrand s suggestion. (defn redux [[current next] flag] [(if flag ...

taking java method names as function arg in clojure

All, I want to create a function that takes a symbol representing a java method and applies it to some object: (user=> (defn f [m] (. "foo" (m))) When I execute this, I get a result much ...

how to efficiently apply a medium-weight function in parallel

I m looking to map a modestly-expensive function onto a large lazy seq in parallel. pmap is great but i m loosing to much to context switching. I think I need to increase the size of the chunk of work ...

热门标签