How to Install and Uninstall python2-smmap2 Package on openSUSE Leap

Last updated: November 22,2024

1. Install "python2-smmap2" package

This is a short guide on how to install python2-smmap2 on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python2-smmap2

2. Uninstall "python2-smmap2" package

In this section, we are going to explain the necessary steps to uninstall python2-smmap2 on openSUSE Leap:

$ sudo zypper remove python2-smmap2

3. Information about the python2-smmap2 package on openSUSE Leap

Information for package python2-smmap2:
---------------------------------------
Repository : Main Repository
Name : python2-smmap2
Version : 2.0.5-bp153.1.15
Arch : noarch
Vendor : openSUSE
Installed Size : 175,3 KiB
Installed : No
Status : not installed
Source package : python-smmap2-2.0.5-bp153.1.15.src
Summary : A pure python implementation of a sliding window memory map manager
Description :
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.
The interface also works around the missing offset parameter in python
implementations up to python 2.5.
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.