How to Install and Uninstall memtailor.x86_64 Package on Fedora 38
Last updated: November 28,2024
1. Install "memtailor.x86_64" package
Please follow the guidelines below to install memtailor.x86_64 on Fedora 38
$
sudo dnf update
Copied
$
sudo dnf install
memtailor.x86_64
Copied
2. Uninstall "memtailor.x86_64" package
In this section, we are going to explain the necessary steps to uninstall memtailor.x86_64 on Fedora 38:
$
sudo dnf remove
memtailor.x86_64
Copied
$
sudo dnf autoremove
Copied
3. Information about the memtailor.x86_64 package on Fedora 38
Last metadata expiration check: 3:45:02 ago on Sat Mar 16 16:59:57 2024.
Available Packages
Name : memtailor
Version : 1.0
Release : 22.20220104.git95dbac7.fc38
Architecture : x86_64
Size : 17 k
Source : memtailor-1.0-22.20220104.git95dbac7.fc38.src.rpm
Repository : fedora
Summary : C++ library of special-purpose memory allocators
URL : https://github.com/Macaulay2/memtailor
License : BSD-3-Clause
Description : Memtailor is a C++ library of special purpose memory allocators. It
: currently offers an arena allocator and a memory pool.
:
: The main motivation to use a memtailor allocator is better and more
: predictable performance than you get with new/delete. Sometimes a
: memtailor allocator can also be more convenient due to the ability to
: free many allocations at one time.
:
: The Memtailor memory pool is useful if you need to do many allocations
: of a fixed size. For example a memory pool is well suited to allocate
: the nodes in a linked list.
:
: You can think of the Memtailor arena allocator as being similar to stack
: allocation. Both kinds of allocation are very fast and require you to
: allocate/deallocate memory in last-in-first-out order. Arena allocation
: has the further benefits that it stays within the C++ standard, it will
: not cause a stack overflow, you can have multiple arena allocators at
: the same time and allocation is not tied to a function invocation.
Available Packages
Name : memtailor
Version : 1.0
Release : 22.20220104.git95dbac7.fc38
Architecture : x86_64
Size : 17 k
Source : memtailor-1.0-22.20220104.git95dbac7.fc38.src.rpm
Repository : fedora
Summary : C++ library of special-purpose memory allocators
URL : https://github.com/Macaulay2/memtailor
License : BSD-3-Clause
Description : Memtailor is a C++ library of special purpose memory allocators. It
: currently offers an arena allocator and a memory pool.
:
: The main motivation to use a memtailor allocator is better and more
: predictable performance than you get with new/delete. Sometimes a
: memtailor allocator can also be more convenient due to the ability to
: free many allocations at one time.
:
: The Memtailor memory pool is useful if you need to do many allocations
: of a fixed size. For example a memory pool is well suited to allocate
: the nodes in a linked list.
:
: You can think of the Memtailor arena allocator as being similar to stack
: allocation. Both kinds of allocation are very fast and require you to
: allocate/deallocate memory in last-in-first-out order. Arena allocation
: has the further benefits that it stays within the C++ standard, it will
: not cause a stack overflow, you can have multiple arena allocators at
: the same time and allocation is not tied to a function invocation.