Skip to main content

A pure Python implementation of a sliding window memory map manager

Reason this release was yanked:

It's replaced by a non-breaking release v5.0.1

Project description

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.8+
  • 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.

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

smmap-6.0.0.tar.gz (22.3 kB view details)

Uploaded Source

Built Distribution

smmap-6.0.0-py3-none-any.whl (24.3 kB view details)

Uploaded Python 3

File details

Details for the file smmap-6.0.0.tar.gz.

File metadata

  • Download URL: smmap-6.0.0.tar.gz
  • Upload date:
  • Size: 22.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for smmap-6.0.0.tar.gz
Algorithm Hash digest
SHA256 8d79028ea6cc131da5eab099a5d95a998d43c6779956fffe3b455040911076da
MD5 c6457a7911fd5578f74c1adc8e74caa1
BLAKE2b-256 c302a17f48f783b2668bae4837385d073b98f8b3afdfd97a917e61b921e59d16

See more details on using hashes here.

File details

Details for the file smmap-6.0.0-py3-none-any.whl.

File metadata

  • Download URL: smmap-6.0.0-py3-none-any.whl
  • Upload date:
  • Size: 24.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for smmap-6.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6115876b0dd2db938f349c1fac7a8f103d16181c3d29afd1908f16e211f1c51b
MD5 636623c2cf077770f3aebe1f0dbbc051
BLAKE2b-256 bc66188d85a7ad7b18723a7d44318289f70076a6a7fcb87249fe31d7cff4c524

See more details on using hashes here.

Supported by

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