หน่วยความจำธุรกรรมซอฟต์แวร์ (STM)
ทำความเข้าใจว่า STM ของ Clojure จัดเตรียมธุรกรรมสำหรับสถานะที่ใช้ร่วมกันซึ่งเป็นอะตอม มีความสอดคล้อง แยกอิสระ และคงทน (ACID) ได้อย่างไร
หน่วยความจำธุรกรรมซอฟต์แวร์ (STM) เป็นบทเรียน Clojure Functional Programming & JVM Backend Development ฟรีบน CoddyKit นี่คือบทเรียนที่ 2 จากทั้งหมด 4 บทเรียน คุณสามารถอ่านบทเรียนทั้งหมดด้านล่างฟรี — จากนั้นลองปฏิบัติด้วยตัวคุณเองในเบราว์เซอร์พร้อมตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7 บทเรียนนี้เป็นส่วนหนึ่งของเส้นทางการเรียน Clojure Functional Programming & JVM Backend Development และความก้าวหน้าของคุณจะซิงค์ข้ามเว็บและแอป CoddyKit คอร์ส Clojure Functional Programming & JVM Backend Development มีบทเรียนทั้งหมด 4 บทเรียน
บางส่วนของบทเรียนนี้ยังไม่ได้รับการแปล และแสดงเป็นภาษาอังกฤษ
What is Software Transactional Memory?
Imagine a bank transfer: you don't want money to disappear or appear out of thin air. You want the whole operation to succeed or fail completely.
Software Transactional Memory (STM) in Clojure provides a similar guarantee for managing shared, mutable state in concurrent programs.
- It's like a mini-database transaction system for your application's memory.
- Ensures that operations on shared data are "all or nothing."
Why We Need STM
In concurrent programming, multiple parts of your code might try to change the same piece of data at the same time. This can lead to:
- Race conditions: The outcome depends on the unpredictable timing of operations.
- Inconsistent state: Data gets corrupted or partially updated.
STM helps prevent these issues by coordinating access to shared data, ensuring data integrity.
Introducing Clojure's `Ref`s
Clojure's STM manages special data containers called Refs. Unlike regular variables, Refs are designed for transactional updates.
- A
Refholds a value that can be changed, but only within a transaction. - You create a
Refwith an initial value using(ref initial-value).
Think of a Ref as a secure vault for your data that only opens for transactions.
Atomic Updates with `dosync`
To perform operations on Refs, you must wrap them inside a dosync macro.
dosyncdefines a transaction block.- All changes to
Refs insidedosyncare treated as a single, atomic unit. - If any part of the transaction fails, all changes are rolled back.
This ensures your data remains consistent, even with concurrent access.
Modifying `Ref`s: `alter`
Inside a dosync block, you use alter to change the value of a Ref.
(alter a-ref update-fn & args)
update-fnis a function applied to the current value of theRef.& argsare additional arguments passed toupdate-fn.alterwill retry the transaction if a conflict (another transaction modifying the sameRef) is detected.
`dosync` & `alter` in Action
This example demonstrates how `dosync` and `alter` work together. We'll update a `Ref` multiple times within a transaction.
(def balance (ref 100))
(defn deposit [amount]
(dosync
(println "Current balance (inside transaction):" @balance)
(alter balance + amount)
(println "New balance (inside transaction):" @balance)))
(defn -main []
(println "Initial balance:" @balance)
(deposit 50)
(println "Final balance:" @balance))
(-main)`commute` for Independent Changes
Sometimes, the order of operations doesn't matter, like adding to a list or counting. For such operations, use commute instead of alter.
(commute a-ref update-fn & args)
commutemarks an update as "commutative."- This can reduce the chance of transaction retries, improving performance.
- It works best for operations where `(f (f x a) b)` is the same as `(f (f x b) a)`.
`commute` with Multiple Threads
Here's an example where multiple threads concurrently increment a counter using `commute`. This highlights how STM manages shared state safely and efficiently.
(def counter (ref 0))
(defn increment-counter []
(dosync
(commute counter inc)))
(defn -main []
(println "Initial counter:" @counter)
(let [futures (doall (for [_ (range 10)]
(future (dotimes [_ 100] (increment-counter)))))]
(doseq [f futures] @f)) ; Wait for all futures to complete
(println "Final counter:" @counter))
(-main)STM's ACID Guarantees
Clojure's STM provides strong guarantees, often summarized by the ACID acronym:
- Atomicity: All or nothing. A transaction either completes entirely or fails entirely.
- Consistency: Transactions bring data from one valid state to another valid state.
- Isolation: Concurrent transactions appear to execute sequentially, preventing interference.
- Durability: (Less applicable to in-memory STM directly, but implied by successful commit) Once a transaction commits, its changes are permanent.
STM Quick Check
Consider the following Clojure code snippet:
(def data (ref []))
(defn add-item [item]
(dosync
(alter data conj item)))
(add-item 10)
(add-item 20)
(println @data)What is the final output of (println @data)?
STM Recap & Beyond
In this lesson, we explored Clojure's powerful Software Transactional Memory (STM) system.
- We learned about
Refs for managing shared state. - The
dosyncmacro ensures atomic transactions. alterupdatesRefs with conflict detection and retries.commuteoptimizes updates for commutative operations.- STM provides ACID guarantees for robust concurrency.
Next, we'll look at other concurrency primitives like Promises and Futures for asynchronous operations!
คำถามที่พบบ่อย
บทเรียน “หน่วยความจำธุรกรรมซอฟต์แวร์ (STM)” ฟรีหรือไม่
ใช่ — ข้อความเต็มของ “หน่วยความจำธุรกรรมซอฟต์แวร์ (STM)” ฟรีให้อ่านที่นี่บนเว็บ เพื่อปฏิบัติแบบโต้ตอบ (ตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7) และปลดล็อคส่วนที่เหลือของคอร์ส Clojure Functional Programming & JVM Backend Development ให้อัปเกรดเป็น CoddyKit PRO คอร์ส Clojure Functional Programming & JVM Backend Development มีบทเรียนทั้งหมด 4 บทเรียน
คุณจะเรียนรู้อะไรในบทเรียน “หน่วยความจำธุรกรรมซอฟต์แวร์ (STM)”
ทำความเข้าใจว่า STM ของ Clojure จัดเตรียมธุรกรรมสำหรับสถานะที่ใช้ร่วมกันซึ่งเป็นอะตอม มีความสอดคล้อง แยกอิสระ และคงทน (ACID) ได้อย่างไร คุณปฏิบัติ Clojure Functional Programming & JVM Backend Development ด้วยโค้ดที่ใช้งานได้จริงที่คุณเรียกใช้โดยตรงในเบราว์เซอร์ และติวเตอร์ AI ตลอด 24/7 ตอบคำถามของคุณขณะที่คุณไปผ่านบทเรียน
คุณต้องมีประสบการณ์ก่อนที่จะเริ่มเรียน Clojure Functional Programming & JVM Backend Development หรือไม่
ไม่จำเป็นต้องมีประสบการณ์มาก่อน Clojure Functional Programming & JVM Backend Development บน CoddyKit ออกแบบมาสำหรับผู้เริ่มต้นไปจนถึงผู้เรียนขั้นสูง คุณสามารถเริ่มต้นที่นี่หรือเริ่มจากตัวแรกและเรียนด้วยความเร็วของคุณเอง นี่คือบทเรียนที่ 2 จากทั้งหมด 4 บทเรียน
บทเรียน “หน่วยความจำธุรกรรมซอฟต์แวร์ (STM)” ใช้เวลานานแค่ไหน
บทเรียน CoddyKit ส่วนใหญ่ใช้เวลาประมาณ 5–10 นาที แต่ละบทเรียนจึงสั้นและเป็นแบบโต้ตอบ คุณสามารถก้าวหน้าอย่างต่อเนื่องและกลับมาเรียนต่อจากตรงที่เพิ่งหยุดบนเว็บและแอปได้เลย
ฉันเขียนและรันโค้ดในบทเรียน Clojure Functional Programming & JVM Backend Development นี้ได้ไหม
ได้ บทเรียน Clojure Functional Programming & JVM Backend Development ทุกบทมีตัวแก้ไขโค้ดในตัว คุณจึงเขียนและรันโค้ดจริงได้เลยในเบราว์เซอร์ และได้รับข้อเสนอแนะจาก AI ในทันที — ไม่ต้องติดตั้งในเครื่องของคุณ
บทเรียนทั้งหมดในหลักสูตรนี้
- รีฟ เอเจนต์ และอะตอมสำหรับจัดการสถานะ
- หน่วยความจำธุรกรรมซอฟต์แวร์ (STM)
- พรอมิส ฟิวเจอร์ และการดำเนินการแบบอะซิงโครนัส
- Channel และบล็อก Go ของ core.async