Skip to main content

Motivation

When reading from many possibly large files in a fashion similar to random access, it is usually the fastest and most efficient to use memory maps.

Although memory maps have many advantages, they represent a very limited system resource as every map uses one file descriptor, whose amount is limited per process. On 32 bit systems, the amount of memory you can have mapped at a time is naturally limited to theoretical 4GB of memory, which may not be enough for some applications.

Limitations

  • System resources (file-handles) are likely to be leaked! This is due to the library authors reliance on a deterministic __del__() destructor.
  • The memory access is read-only by design.

Overview

Python package

Smmap wraps an interface around mmap and tracks the mapped files as well as the amount of clients who use it. If the system runs out of resources, or if a memory limit is reached, it will automatically unload unused maps to allow continued operation.

To allow processing large files even on 32 bit systems, it allows only portions of the file to be mapped. Once the user reads beyond the mapped region, smmap will automatically map the next required region, unloading unused regions using a LRU algorithm.

Although the library can be used most efficiently with its native interface, a Buffer implementation is provided to hide these details behind a simple string-like interface.

For performance critical 64 bit applications, a simplified version of memory mapping is provided which always maps the whole file, but still provides the benefit of unloading unused mappings on demand.

Prerequisites

  • Python 3.7+
  • OSX, Windows or Linux

The package was tested on all of the previously mentioned configurations.

Installing smmap

Documentation Status

Its easiest to install smmap using the pip program:

$ pip install smmap

As the command will install smmap in your respective python distribution, you will most likely need root permissions to authorize the required changes.

If you have downloaded the source archive, the package can be installed by running the setup.py script:

$ python setup.py install

It is advised to have a look at the Usage Guide for a brief introduction on the different database implementations.

Homepage and Links

The project is home on github at https://github.com/gitpython-developers/smmap .

The latest source can be cloned from github as well:

  • git://github.com/gitpython-developers/smmap.git

For support, please use the git-python mailing list:

Issues can be filed on github:

A link to the pypi page related to this repository:

License Information

smmap is licensed under the New BSD License.

Release files for smmap 5.0.3

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for smmap 5.0.3
File Size Uploaded
smmap-5.0.3.tar.gz 22.5 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for smmap 5.0.3
File Interpreter ABI Platform
smmap-5.0.3-py3-none-any.whl Python 3 none any Details

Total release size: 46.9 kB

Release files / smmap-5.0.3.tar.gz

Download URL smmap-5.0.3.tar.gz
Size 22.5 kB
Tags Source
SHA-256 checksum
How to use checksums
4d9debb8b99007ae47165abc08670bd74cb74b5227dda7f643eccc4e9eb5642c
BLAKE2b-256 checksum
How to use checksums
1fea49c993d6dfdd7338c9b1000a0f36817ed7ec84577ae2e52f890d1a4ff909
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release files / smmap-5.0.3-py3-none-any.whl

Download URL smmap-5.0.3-py3-none-any.whl
Size 24.4 kB
Tags Python 3
SHA-256 checksum
How to use checksums
c106e05d5a61449cf6ba9a1e650227ecfb141590d2a98412103ff35d89fc7b2f
BLAKE2b-256 checksum
How to use checksums
c1d459e74daffcb57a07668852eeeb6035af9f32cbfd7a1d2511f17d2fe6a738
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.3

Release history Release notifications | RSS feed

6.0.0

2 release files

This release

5.0.3 This release

2 release files

5.0.2

2 release files

5.0.1

2 release files

5.0.0

2 release files

4.0.0

2 release files

3.0.5

2 release files

3.0.4

2 release files

3.0.2

2 release files

3.0.1

2 release files

3.0.0

2 release files

0.9.0

1 release file

0.8.5

1 release file

0.8.4

1 release file

0.8.3

1 release file

0.8.2

1 release file

0.8.1

1 release file

0.8.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page