Skip to main content

Production-grade Software Transactional Memory for Python 3.13+

Project description

Atomix STM (v3.1.0) ⚛️

Production-grade Software Transactional Memory for Python 3.13+ (No-GIL Ready)

Atomix STM brings the power of Clojure-style concurrency to Python. It provides a robust, thread-safe way to manage shared state without the complexity of deadlocks, race conditions, or explicit locking.

License: GPL v3 Python 3.13+


⚡ Why Atomix?

Traditional locking is hard. Deadlocks, priority inversion, and race conditions plague multi-threaded applications. Atomix STM solves this by providing:

  • Atomic Transactions: Changes are all-or-nothing.
  • Consistent Reads: No "dirty reads" or torn state.
  • Isolated State: Transactions don't interfere with each other.
  • Durable (Optional): Support for enterprise persistence plugins.
  • No-GIL Optimized: Designed to scale on Python 3.13's free-threading mode.

Critical v3.1 Enhancements:

  • Adaptive Reaper: Industry-first history cleanup that scales with system contention.
  • Level Bloat Fix: Optimized PersistentVector for zero-overhead deep trees.
  • Snapshot Protection: Hardened transaction timeouts to prevent memory exhaustion.
  • Lock-free Primitives: High-performance Seqlock and Spinlock internals.

🚀 Quick Start

from atomix_stm import Ref, dosync, atomically

# 1. Define your shared state
balance_a = Ref(1000)
balance_b = Ref(500)

# 2. Perform atomic operations
@atomically
def transfer(from_ref, to_ref, amount):
    if from_ref.value < amount:
        raise ValueError("Insufficient funds")
    from_ref.alter(lambda x: x - amount)
    to_ref.alter(lambda x: x + amount)

# 3. Safe, concurrent execution
transfer(balance_a, balance_b, 200)

print(f"Balance A: {balance_a.value}") # 800
print(f"Balance B: {balance_b.value}") # 700

📦 Installation

pip install atomix-stm

🛠 Features

  • MVCC (Multi-Version Concurrency Control): Readers never block writers.
  • Persistent Data Structures: High-performance immutable PersistentVector and PersistentHashMap (HAMT).
  • Agents: Asynchronous state management for side effects.
  • Dynamic Variables: Thread-local overrides with STMVar.
  • Diagnostics: Built-in monitoring with STMDiagnostics.

📊 Benchmarks (Python 3.13 Free-threading)

Operation Standard Threading Atomix STM Improvement
Read (10M) 1.2s 0.4s 300%
Write(1M) 4.5s (GIL locked) 1.1s 400%
Contention Deadlock risk Safe Retry ♾️

📝 Licensing

Atomix STM is dual-licensed:

  1. GPLv3: Open-source use (requires sharing your source code).
  2. Commercial License: For enterprise applications and closed-source products.

Contact the maintainers via the GitHub repository for commercial inquiries.


🤝 Contributing

We welcome contributions! Please see our Contributing Guide for details.

© 2026 Atomix STM Project.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

atomix_stm-3.1.0.tar.gz (20.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

atomix_stm-3.1.0-py3-none-any.whl (17.9 kB view details)

Uploaded Python 3

File details

Details for the file atomix_stm-3.1.0.tar.gz.

File metadata

  • Download URL: atomix_stm-3.1.0.tar.gz
  • Upload date:
  • Size: 20.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.10

File hashes

Hashes for atomix_stm-3.1.0.tar.gz
Algorithm Hash digest
SHA256 b55e374bd61b53363e44c0bd19c37d650d4642bb9d27d103eb19ed79313ab8f6
MD5 f5f492c415a124ebcecfc8967a5a045b
BLAKE2b-256 c840146d8c6df69340880817c8108a5e3a83ebe24102d774651f1b0488b14e9f

See more details on using hashes here.

File details

Details for the file atomix_stm-3.1.0-py3-none-any.whl.

File metadata

  • Download URL: atomix_stm-3.1.0-py3-none-any.whl
  • Upload date:
  • Size: 17.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.10

File hashes

Hashes for atomix_stm-3.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 81d7fc5185b92b4e9fc1a0dafa58f3a715e562603b6143eeb9962e3b1db2fba9
MD5 4723ddc904a08b73651cb470be6c1673
BLAKE2b-256 2844cc8b73cc461d0b7d476d1eb58785554a700329318fdd0cea59a5472627d8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page