Skip to main content

Production-grade Software Transactional Memory for Python 3.13+

Project description

Atomix STM (v3.1.5) ⚛️

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.

v3.1.x Enterprise Hardening:

  • Heavy Metal Atomicity (v3.1.4): Entire commit process is atomic, eliminating the last 0.1% race conditions.
  • Robust History Retention (v3.1.4): MVCC snapshots are protected from garbage collection while active.
  • Adaptive Reaper: Industry-first history cleanup that scales with system contention.
  • Level Bloat Fix: Optimized PersistentVector for zero-overhead deep trees.
  • Transparent Error Propagation: Refactored abort() to prevent exception masking and silent data loss.
  • 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

[!NOTE] Compatibility: Atomix STM is compatible with Python 3.9 through 3.14. While it works perfectly on standard Python with the GIL, it provides maximum performance gains on Python 3.13+ with free-threading enabled.


🛠 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.5.tar.gz (21.3 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.5-py3-none-any.whl (18.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: atomix_stm-3.1.5.tar.gz
  • Upload date:
  • Size: 21.3 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.5.tar.gz
Algorithm Hash digest
SHA256 1bd507a14a71a9af10f79adbbb72187de97682c55f5c89b584481547516bb735
MD5 eab6586c49d6ec51b2e4b7f8fd8f3efe
BLAKE2b-256 20f8a139a97b17f03ff1e16e48e662304433180c261d5dc28a0798ba1504ea43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: atomix_stm-3.1.5-py3-none-any.whl
  • Upload date:
  • Size: 18.2 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.5-py3-none-any.whl
Algorithm Hash digest
SHA256 e1a98ab17a08139e80079d3213c195c217e1b0af50e94cbd9aae8547af81abfe
MD5 576fa6aa789eadf7f9b163a196acec5b
BLAKE2b-256 e3dc44cd134892c322fdbb04da37b508befab11d0313bfb49aa194b5aa7aad66

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