Python Slots Memory

Python Slots Memory Rating: 4,0/5 513 reviews

Python has two similar sequence types such as tuples and lists. The most well-known difference between them is that tuples are immutable, that is, you cannot change their size as well as their immutable objects.

But slots in the python exists from version 2.2. It's main purpose is memory optimisation because it allow to get rid of dict object, which created by interpreter for each instance of class. If you create many small objects, with predefined structure, and meet a memory limit, than slots can help you to overcome that limitation.

You can't changes items in a tuple:

Python Slots Memory Upgrade

But you can change mutable objects:

Internally, both lists and tuples are implemented as a list of pointers to the Python objects (items). When you remove an item from a list, the reference to an item gets destroyed. Keep in mind, that removed item can stay alive if there are other references in your program to it.

Memory

Python List Memory

Tuples

Python slots memory upgrade

Despite the fact that tuples are less popular than lists, it is a fundamental data type, which is used a lot internally.

Full blog post: if I told you there was a simple technique you can employ on your. Decorator for adding slots. Python3.7 provides dataclasses module for faster class creation. Unfortunately there's no support for slots. If you want to create more memory efficient instances, you need to do it by yourself or use dataslots.dataslots decorator. Usage Simple example @dataslots @dataclass class Point2D: x: int y: int Inheritance. Python Memory Management and Tips Transcripts Chapter: Memory and classes Lecture: People with slots Learn more about this course Login or purchase this course to watch this video and the rest of the course contents. 0:00 We saw that switching our fields that we just pre.

You may not notice, but you are using tuples when:

  • working with arguments and parameters
  • returning 2 or more items from a function
  • iterating over dictionary's key-value pairs
  • using string formatting

Typically, a running program has thousands of allocated tuples.

Empty lists vs. empty tuples

Empty tuple acts as a singleton, that is, there is always only one tuple with a length of zero. When creating an empty tuple Python points to already preallocated one, in such way that any empty tuple has the same address in the memory. This is possible because tuples are immutable and sometimes saves a lot of memory.

But this doesn't apply to lists since they can be modified.

Allocation optimization for small tuples

To reduce memory fragmentation and speed up allocations, Python reuses old tuples. If a tuple no longer needed and has less than 20 items instead of deleting it permanently Python moves it to a free list.

A free list is divided into 20 groups, where each group represents a list of tuples of length n between 0 and 20. Each group can store up to 2 000 tuples. The first (zero) group contains only 1 element and represents an empty tuple.

In the example above we can see that a and b have the same id. That is because we immediately occupied a destroyed tuple which was on the free list.

Free Memory Python

Allocation optimization for lists

Since lists can be modified, Python does not use the same optimization as in tuples. However, Python lists also have a free list, but it is used only for empty objects. If an empty list is deleted or collected by GC, it can be reused later.

List resizing

To avoid the cost of resizing, Python does not resize a list every time you need to add or remove an item. Instead, every list has a number of empty slots which are hidden from a user but can be used for new items. If the slots are completely consumed Python over-allocates additional space for them. The number of additional slots is chosen based on the current size of the list.

Developer documentation describes it as follows:

This over-allocates proportional to the list size, making room for additional growth. The over-allocation is mild but is enough to give linear-time amortized behavior over a long sequence of appends() in the presence of a poorly-performing system realloc().

Free

The growth pattern is: 0, 4, 8, 16, 25, 35, 46, 58, 72, 88, ...

Note: new_allocated won't overflow because the largest possible value is PY_SSIZE_T_MAX * (9 / 8) + 6 which always fits in a size_t.

For example, if you want to append an item to a list of length 8, Python will resize it to16 slots and add the 9th item. The rest of the slots will be hidden and reserved for new items.

The growing factor looks as follows:

Performance

If you are interested in speed comparison, there is a good summary about the overall performance by Raymond Hettinger.

Want a monthly digest of these blog posts?

  • AutoSniper 2 years, 6 months ago (from disqus) #

    This was educational. I encourage using generators and lazy evaluation whenever possible; it is preferred over working with tuples and lists.