Skip to main content

Priority-expiry-cache

Wrapper of the rust cargo

Intro

This problem is one of the famous questions asked in companies interviews, the like of tesla, amazon, bp, etc.

Tesla Phone Screen Cache Problem

I personally found this question a bit too much for an hour interview, to go from ideation to writing a full code implementation. This crate it's an attempt to make asking this question obsolete and spare good candidates from a rejection for a problem which is more based on intuition than on algo and data structures skills.

For all of those interested in just having a good priority, expiry cache in place feel free to look at the official crate of this crate send prs and tickets at the official github repo.

All code is released under and informal Beerware licence.

Problem Statement

The problem statement requires us to design a cache with the following methods:

  • get(String key)
  • set(String key, String value, int priority, int expiry)
  • evictItem(int currentTime)

The rules by which the cache operates is are follows:

  1. If an expired item is available. Remove it. If multiple items have the same expiry, removing any one suffices.
  2. If condition #1 can’t be satisfied, remove an item with the least priority.
  3. If more than one item satisfies condition #2, remove the least recently used one.
  4. Multiple items can have the same priority and expiry.

Untold rules:

  • All of those operations should be O(1) time and space complexity.

1 Min Solution summary

It's an extension of the LRU Cache Wikipedia as explained in this implementation LRU Cache Interview Cake the difference it's the addition of a binary tree to keep track of the min and max priority and expiry.

Solution

Assumptions:

  • all the parameters do have fixed length e.g. String= len 1024; Int = u32

Data structure used:

Set O(1) time and space

Let's start from set, to reduce the Lookup time we are going to use hashmap to store a reference to the object that will encapsulate the "value" parameters at cost O(K) time and space assuming the map its pre-initialized, now K is the length of the String because it will be the input of our hash function, given our assumption is value it's a fixed length then O(1) will be our cost.

Now we can make an assumption that the int it's a finite number say u32, this means we can construct a binary tree with a depth of 32 with access time of O(32) therefore O(1) time and space.

This way we can build 2 binary trees that will give us the min and max priority and expiry in O(1) cost. to satisfy rule 4 we need as well to use a double linked list as leaf level of the binary trees so we can have multiple items with the same expiry or same priority and to satisfy rule 3 about the removal of the least recently used.

The complexity is O(1) for the insertion + O(1) for the insertion binary tree of priority and expiry O(K)x2 assuming K its constant then O(1)+O(1)x2 = O(1) time and space.

Get O(1) time and space

The get is simpler because we only have to access the hashmap to get the reference to the object which we do already know happens in O(1) time and space.

And

Keep the expiry least used doubly linked list on both expiry and priority consistent we are going to move the item to the head of the list, this way we can keep track of the least recently used O(1).

The complexity is O(1) for the lookup + O(1) for the insertion binary tree of priority and expiry O(K)x2 assuming K its constant then O(1)+O(1)x2 = O(1) time and space.

EvictItem O(1) time and space

Following rule number 1 we are going to get the min expiry time in O(1) thanks to the binary tree mentioned earlier, and delete the first item, as policy we are using the least recently used for both expiry and priority.

As requested if the min it's still not expired we are going to get in O(1) the min priority, and we can remove the least recently used thanks to the doubly linked list.

The complexity is O(1)x2 for the find of the min expiry time and the min in priority and O(1) to remove the tail of the doubly linked list = O(1) time and space.

Credits

Release files for priority-expiry-cache 0.1.0

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

Source distribution (sdist)

Source distribution for priority-expiry-cache 0.1.0
File Size Uploaded
priority_expiry_cache-0.1.0.tar.gz 8.4 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for priority-expiry-cache 0.1.0
File
priority_expiry_cache-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ x86-64 Details
priority_expiry_cache-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ IBM System/390x Details
priority_expiry_cache-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ PowerPC 64-le Details
priority_expiry_cache-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARMv7l Details
priority_expiry_cache-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARM64 Details
priority_expiry_cache-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.5+ x86-32 Details
priority_expiry_cache-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ x86-64 Details
priority_expiry_cache-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ IBM System/390x Details
priority_expiry_cache-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ PowerPC 64-le Details
priority_expiry_cache-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARMv7l Details
priority_expiry_cache-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARM64 Details
priority_expiry_cache-0.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.5+ x86-32 Details
priority_expiry_cache-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ x86-64 Details
priority_expiry_cache-0.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ IBM System/390x Details
priority_expiry_cache-0.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ PowerPC 64-le Details
priority_expiry_cache-0.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ ARMv7l Details
priority_expiry_cache-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ ARM64 Details
priority_expiry_cache-0.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.5+ x86-32 Details
priority_expiry_cache-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ IBM System/390x Details
priority_expiry_cache-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ PowerPC 64-le Details
priority_expiry_cache-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARMv7l Details
priority_expiry_cache-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
priority_expiry_cache-0.1.0-cp312-none-win_amd64.whl CPython 3.12 none Windows x86-64 Details
priority_expiry_cache-0.1.0-cp312-none-win32.whl CPython 3.12 none Windows x86-32 Details
priority_expiry_cache-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
priority_expiry_cache-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x Details
priority_expiry_cache-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
priority_expiry_cache-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
priority_expiry_cache-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
priority_expiry_cache-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-32 Details
priority_expiry_cache-0.1.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
priority_expiry_cache-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
priority_expiry_cache-0.1.0-cp311-none-win_amd64.whl CPython 3.11 none Windows x86-64 Details
priority_expiry_cache-0.1.0-cp311-none-win32.whl CPython 3.11 none Windows x86-32 Details
priority_expiry_cache-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
priority_expiry_cache-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
priority_expiry_cache-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
priority_expiry_cache-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l Details
priority_expiry_cache-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
priority_expiry_cache-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-32 Details
priority_expiry_cache-0.1.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
priority_expiry_cache-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
priority_expiry_cache-0.1.0-cp310-none-win_amd64.whl CPython 3.10 none Windows x86-64 Details
priority_expiry_cache-0.1.0-cp310-none-win32.whl CPython 3.10 none Windows x86-32 Details
priority_expiry_cache-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
priority_expiry_cache-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
priority_expiry_cache-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
priority_expiry_cache-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l Details
priority_expiry_cache-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
priority_expiry_cache-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32 Details
priority_expiry_cache-0.1.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
priority_expiry_cache-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details
priority_expiry_cache-0.1.0-cp39-none-win_amd64.whl CPython 3.9 none Windows x86-64 Details
priority_expiry_cache-0.1.0-cp39-none-win32.whl CPython 3.9 none Windows x86-32 Details
priority_expiry_cache-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
priority_expiry_cache-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
priority_expiry_cache-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
priority_expiry_cache-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARMv7l Details
priority_expiry_cache-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
priority_expiry_cache-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32 Details
priority_expiry_cache-0.1.0-cp38-none-win_amd64.whl CPython 3.8 none Windows x86-64 Details
priority_expiry_cache-0.1.0-cp38-none-win32.whl CPython 3.8 none Windows x86-32 Details
priority_expiry_cache-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
priority_expiry_cache-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
priority_expiry_cache-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
priority_expiry_cache-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARMv7l Details
priority_expiry_cache-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
priority_expiry_cache-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details

Total release size:67.2 MB

Release files / priority_expiry_cache-0.1.0.tar.gz

Download URL priority_expiry_cache-0.1.0.tar.gz
Size 8.4 kB
Tags Source
SHA-256 checksum
How to use checksums
4051970920dbb7396166e081120babd25781007ada15f0865a5b94a9b6d28495
BLAKE2b-256 checksum
How to use checksums
b2120de42d84dd1ddb91dadf0a6b6333f3ff947b08de730fa143a3631659d192
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL priority_expiry_cache-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.2 MB
Tags Linux glibc 2.17+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
76baa6a9df80d0ba48db09e508a74838ece4912aa97d11c93047e4d6a5d66b70
BLAKE2b-256 checksum
How to use checksums
b41e650ee1b787841ef0085ad45851ee35eb23ca207a3325318793754154855e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL priority_expiry_cache-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.3 MB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
c9aa3dea8545a3b6731a376ab8a3db231e04f486aaa1e8ead33e11c2cc3ebee3
BLAKE2b-256 checksum
How to use checksums
cac02d3a6c1f953707b6b2663a86f8a294fc20ec5ea92174321df85584d3bd2a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL priority_expiry_cache-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.3 MB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
939cabe7e3b7b8f4f1d4f88b1026e1c9e6054b6b085f4e5ed93165777b1eb189
BLAKE2b-256 checksum
How to use checksums
0a4f8925c933ecfc9d3fedc8b758ad8d1e2b42d14718e53c0576c5e6227d5edf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL priority_expiry_cache-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.2 MB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
bb37690471d65f41517ab7329cace526c327370be3d85ef7ded22ad49c054f1c
BLAKE2b-256 checksum
How to use checksums
dec136508ae6e8dee9b0913f71daa0f691426f317f5730c3cb2320b906d741c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL priority_expiry_cache-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.2 MB
Tags Linux glibc 2.17+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
2d550020b67f0de1f261d25fc549f35df742a3e62c4cffdf4637ebb29040cbba
BLAKE2b-256 checksum
How to use checksums
4ab3696883b33f6a377b44b0ab9c8b7a8c56c88b1df231c8b75a9bcdead27632
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl

Download URL priority_expiry_cache-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.2 MB
Tags Linux glibc 2.5+ x86-32 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
a960117433c11eec35d0803446cba1195fb070435cf9d988ca4830c36a4ee588
BLAKE2b-256 checksum
How to use checksums
20583f2a04709c16fe345c2ffdd94f52c29d857d5bea457a6f95dbc731eb0dc4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL priority_expiry_cache-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.2 MB
Tags Linux glibc 2.17+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
ddc9b7ddb8b04047093a021f0966efa500450679299c514ddd3c21528ad8afc5
BLAKE2b-256 checksum
How to use checksums
be7bb4f6853eabb93579af6112ba911f7782056c303c822f78c3a24f15c2c3f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL priority_expiry_cache-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.3 MB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
e55fe364a2261f1ff43e37524f8bba45341c23f7f1dcface8ccb82f532c61fb3
BLAKE2b-256 checksum
How to use checksums
d69295032e14c4a7f37541ddf5f7fbe57d94c5c1d7f55beebd9a339399615f9d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL priority_expiry_cache-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.3 MB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
cd5bdd53127fd214175112335eeabbb3add99d0c50d829e6c73fb6bfaa5f6cdb
BLAKE2b-256 checksum
How to use checksums
56d3920a21894deda0d07ad097109af7c36209b56e2128bb7eeee9cf69d0a7a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL priority_expiry_cache-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.2 MB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
59269eb227aa2061e44b6dff60f4efa9fe07d26031d776fc0e702d04fa47e1b7
BLAKE2b-256 checksum
How to use checksums
22c49e8d09b3ce70b524d93173a9831ac948fc679f20530cdfe77c6ce04bd9a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL priority_expiry_cache-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.2 MB
Tags Linux glibc 2.17+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
3715498cdb742f9c37bcf41789a09aaf7584056dc72745b21a03f13a657d9c8f
BLAKE2b-256 checksum
How to use checksums
7e91b2a9e6681f51f97a97e2c5c1da1a779a148992cd6373c06b66954ed37286
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl

Download URL priority_expiry_cache-0.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.2 MB
Tags Linux glibc 2.5+ x86-32 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
f9ea1bfa82a119fec84a9f171430f3b05b0fbf8f0795963e29a8652f2fad74a6
BLAKE2b-256 checksum
How to use checksums
d69067ad2b0d22368e71a908581523cadde0d0b283df5b37705f04fc370bdf01
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL priority_expiry_cache-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.2 MB
Tags Linux glibc 2.17+ x86-64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
c14ff594b8a1d0c477e3adba93000730c4e6124f0c0b5bdab5572616ce5c2d6b
BLAKE2b-256 checksum
How to use checksums
d8a8d210b0ea913d6d4c7a309f0e5b1ee17fb46b0495daa4cacd125435333609
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL priority_expiry_cache-0.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.3 MB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
ee19d71f9872823b9f4db3720d0d617b260f178d8470ccff1dc96ab52b9ee829
BLAKE2b-256 checksum
How to use checksums
6958f2b306abb8c3fdf784b9258aa09c92cbf10043ada8ca9f688466d6a34a64
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL priority_expiry_cache-0.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.3 MB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
71d1c4522e6b8cc2eeffe30a9e8a87a476587dd18548ae5ee8052f51e27b3216
BLAKE2b-256 checksum
How to use checksums
07d349d38dd6a03a83c966a2a7778feec9ee0645ded657ba23ea826c3ee91f2e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL priority_expiry_cache-0.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.2 MB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
5ee42279e4609cca3f7d370f8882dbc69ec21d007b3b47d29d0d53b417050e74
BLAKE2b-256 checksum
How to use checksums
2c9e41e65cd9c2b0320cdef9c340022edb84ed7ae126f4ac2852ee595ddf8a55
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL priority_expiry_cache-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.2 MB
Tags Linux glibc 2.17+ ARM64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
ffa606df848fbe455c5c8c770e4d0ef50878841107397febd930cb97ecd6f56e
BLAKE2b-256 checksum
How to use checksums
762a15a5a815cfaba8a930544c08a40dd6d79a3911b1e48c2fcfd3fa710ceacb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl

Download URL priority_expiry_cache-0.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.2 MB
Tags Linux glibc 2.5+ x86-32 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
6a4709c2f876bb87554b86af3efe511149a89e35823f2ef2e0ff7bb0ed3cd3cf
BLAKE2b-256 checksum
How to use checksums
2febddef4d0434ba504b0b9fb2fc915782c2bf3263f648f73376644dcdb23d8e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL priority_expiry_cache-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.3 MB
Tags CPython 3.13 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
15497f49bd042ad4d1ddc55bf7a6692efc6361edb8245d66d73b37f10c0322e3
BLAKE2b-256 checksum
How to use checksums
be6ae2df4515351573078e0e47bbf6ad8e7dcac866e443b05b1783637e0c804d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL priority_expiry_cache-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.3 MB
Tags CPython 3.13 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
2ef50f1b11c59331b1d063c5ae1b777495c6ba96d7a26c0cdf26bc461d172d75
BLAKE2b-256 checksum
How to use checksums
e1c7a098a7e6c38b4b7452b8c38bb7c1b210db4943e9638b67d2b3151c29011a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL priority_expiry_cache-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.2 MB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
84a2969f85578b17801f338fd271f06616451d5a9976a9c7c91dbb50c81b017a
BLAKE2b-256 checksum
How to use checksums
1d004cf1ee9759a45081e12876d56364f9985516397630df4304a71f05ea96cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL priority_expiry_cache-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.2 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
155c831e87539b4bc96a370d90aea364777ccf6c94fd2b8b82ad2bef87318656
BLAKE2b-256 checksum
How to use checksums
3cb93ff6d013cea40efa733d806fa22f46a4a36633ecdc918d9ebed3847753c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp312-none-win_amd64.whl

Download URL priority_expiry_cache-0.1.0-cp312-none-win_amd64.whl
Size 153.4 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
36978a1a8eadf42b60e358b8ea2e0d0133c6db5588bb6b00549c487aee9ca07d
BLAKE2b-256 checksum
How to use checksums
4cb8104a9d84f33196cb94bdfd5c26bba8c5c960572524890aa0fd43b71e7dcf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp312-none-win32.whl

Download URL priority_expiry_cache-0.1.0-cp312-none-win32.whl
Size 148.2 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
bb06ffe441595f27ddde219ccd383cb41f598623278cb22a0e32732aaa3099eb
BLAKE2b-256 checksum
How to use checksums
c3cb811e2ea167b140842875ce595bc7bb4bb08a4a4094db1da5858e81f9a0f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL priority_expiry_cache-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.2 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
fe63ded29c3db8ea1b00a2e3bfe02edd3364e9cddf1f1eff135c378336874c42
BLAKE2b-256 checksum
How to use checksums
f4d50d46dc3d42894a794fbd51f183d45c81ea81f54c8770023e5a314f8e596c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL priority_expiry_cache-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.3 MB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
157a5619ee787b1b7144162c9183c066a110d57219f6eef772c4669105662933
BLAKE2b-256 checksum
How to use checksums
4e74d326da9ad93ae883c405fd602be48863c981821b63ad8dabe7b7c4aa1ca2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL priority_expiry_cache-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.3 MB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
9619d796a8c5bd4c9b8803d2287e8b26b30bed546b75cd6a1974af7113cff5d3
BLAKE2b-256 checksum
How to use checksums
0cdb014f2c9a6bdbccd9e369c0a644811c24617b5da3fa3cc81659017c5ce368
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL priority_expiry_cache-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.2 MB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
7c439b80127c7c2d35f4df222f47a5580ab16ed312f0397fe504864630304d44
BLAKE2b-256 checksum
How to use checksums
216697ffcb7776e8c3cbef3f500241329be6156edcb94585b0529b39f44c3003
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL priority_expiry_cache-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.2 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9a1093344ad65e886f254303f64ce268d989d9c3cfe50b2dd0498ab617d29932
BLAKE2b-256 checksum
How to use checksums
40abc9763414141af2b83392995c7ee21da4680ce979ac7a8081ef66bcf47099
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl

Download URL priority_expiry_cache-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.2 MB
Tags CPython 3.12 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
2ad10cd8b6144f1deb4e05fec76dbe74ebbc047146ffb71ce5dc5f837fc476ad
BLAKE2b-256 checksum
How to use checksums
eb067eb36d8cf08dbf6bc2a43ce8f6c3aebacd86e381411a9d430d829bf10f25
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL priority_expiry_cache-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Size 282.8 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
bc3a2d506e78649a4ccace2c1d25d3e28dbcd6e56ea8cb4f16d55a46f089e0f1
BLAKE2b-256 checksum
How to use checksums
da24b52194fed89a4e67010d6d44027b8e3546d5924820598784bad4f775beae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl

Download URL priority_expiry_cache-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Size 286.3 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
351e90beecec5cfd71d726366cac1b8882a72ee90a54d7c463cd08829d4e46dc
BLAKE2b-256 checksum
How to use checksums
f9ae60ac25480e61e6fde79e875232a0db4ad53ed3337cfb9e687e61eda225be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp311-none-win_amd64.whl

Download URL priority_expiry_cache-0.1.0-cp311-none-win_amd64.whl
Size 154.1 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
0266258a8eafbc687aa493460ce03fb52b8f0abf2047344a0d153f76d40e57ed
BLAKE2b-256 checksum
How to use checksums
ed7f49f9c35961513907bb1b822ec00f4352d5aee83d05207f01570278cfb6b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp311-none-win32.whl

Download URL priority_expiry_cache-0.1.0-cp311-none-win32.whl
Size 150.1 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
625bbe4fac734ad23585f3c492a13f3afe38eade7aff7e26687ca6c0de86c745
BLAKE2b-256 checksum
How to use checksums
2146fa09d26bb606cad101602d18182003bcfec7fff65491eaeb149a7da38bda
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL priority_expiry_cache-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.2 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
812cc6625804e966f9ffcec4b68e0ada69da51939adb47c1036923ede2340068
BLAKE2b-256 checksum
How to use checksums
f0844cf95ce641b8dde3d95ffc6834aaa9a16d09cbc905a975424c679860e2d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL priority_expiry_cache-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.3 MB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
a95892c7a02051e03105083ea76f234844e97df534ba03b82b064168eef71f2f
BLAKE2b-256 checksum
How to use checksums
fe230bf75b959900b4aee2de2ff7951b533df2b1a8c55639b3bba225bd48712e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL priority_expiry_cache-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.3 MB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
1b11efe30e5c4b8c122ce338dea5f6d7034de218226455ad62eeac940711d043
BLAKE2b-256 checksum
How to use checksums
ca207d610f3be12166bd73290b6ffa3fe5f74c11bce9dd1cd75caee15f054ba0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL priority_expiry_cache-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.2 MB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
68cc60e0e2002d16ee673c54fc62e97e8adb705ad18a7c1cbd3b19e2582f52b4
BLAKE2b-256 checksum
How to use checksums
b40a4f11d58a3169a8dfb8cecf3d4565abeef507cef34591bf6a90dbcfc7f09f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL priority_expiry_cache-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.2 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d04d48153c270b61711a4a0651f9046862f1f408ed10aac38536026e046d84de
BLAKE2b-256 checksum
How to use checksums
7d3e708596160a3963395e272b59949efaa9bf647d109036ac3ec8918fdbd7e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl

Download URL priority_expiry_cache-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.2 MB
Tags CPython 3.11 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
50eb161bc26cea0b64435b8423e0ac335e01a04973937886b7e91568be9db7bb
BLAKE2b-256 checksum
How to use checksums
43385a33a7e2dd1a79a80861774c5c3683bddf2899eb5091e78110c3141b2aa4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL priority_expiry_cache-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Size 284.0 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
799f73ccc1ca2af8bdae0532744939942b743662fa14e9ba90e1d3f5a1ed7d4f
BLAKE2b-256 checksum
How to use checksums
c198c4905d9b7de5108732ff7279afaf62f7585349f8ebeea7abbd63a8a4b831
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl

Download URL priority_expiry_cache-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Size 287.5 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
8f40d862fb0b41fba35a9a7635335c60e33e1923c3d4ee6337cb4a4cd1f96c61
BLAKE2b-256 checksum
How to use checksums
1cf29568b87c38ff76eec5d7ba3e1454e8321e071bba927fe8cf1a53f5984a45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp310-none-win_amd64.whl

Download URL priority_expiry_cache-0.1.0-cp310-none-win_amd64.whl
Size 154.3 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
d07c9b1e86c6f9bf822a7dba22cbc2c5a3a90157f9b146a1b149434f2ae72617
BLAKE2b-256 checksum
How to use checksums
7a6520741c6135a4bb5bc0d50afe45dcb1fa536b7a9ae82c289810f68958562b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp310-none-win32.whl

Download URL priority_expiry_cache-0.1.0-cp310-none-win32.whl
Size 150.1 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
735909741a71ac211fd72cf8bc72d77078faa406a4ed42bf70dcf9c2184320ba
BLAKE2b-256 checksum
How to use checksums
215e2882a0ad36428d43e6bebb35f6fc7ea4475c4c398916a8b3cf3d84482564
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL priority_expiry_cache-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.2 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
d7a00999c452277a31d015d2da96bed695ab3d0571d65f89cc41a6dd9503cab7
BLAKE2b-256 checksum
How to use checksums
48c48e083fa26e1dcef98afc78ddb06ed7e06d2bc4cbef394fb78671309dae70
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL priority_expiry_cache-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.3 MB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
de66c2be48c21f2d5fd0d7d448b8e3289fb371292ce0654e716f8c28aabc18b3
BLAKE2b-256 checksum
How to use checksums
df48d1fe80c816cfec379ba11e64710939720346bca5f554f34923ef7cfa818e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL priority_expiry_cache-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.3 MB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
e530e0ad573c91ebb0f887d229766a4479f50a4aa66a21385ecbf67d8bd7d88f
BLAKE2b-256 checksum
How to use checksums
c7778a4b50eb4fa49445e7dbc893043c1152150d373334f85fa4e797a79147a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL priority_expiry_cache-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.2 MB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
c806321d3b4d128511935bcf0c3fe45fecd77deaffab8138787859d83bcf6063
BLAKE2b-256 checksum
How to use checksums
183f4bc09ea6c2b8143d2727b8424d5911fd7635f3b83f91cecd00e57d74e265
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL priority_expiry_cache-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.2 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
edb2a1364adeb5ea74c1eb3f84a73fe6d5913dce7ebdaa7ae3f2eea4c72dcdfe
BLAKE2b-256 checksum
How to use checksums
09fec26756f59dbdb1b9563d51efb621cdae20eed4f2f58b22833a4ab77514dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl

Download URL priority_expiry_cache-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.2 MB
Tags CPython 3.10 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
42177ce9b5cf419ecf1041502bdfd65847961ef922cf1eb26c2d7dc243e8991f
BLAKE2b-256 checksum
How to use checksums
bd35d8f9e95db69b7fbfd3f586209624cac6d64008fe5e1644258c024a748a7b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL priority_expiry_cache-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Size 284.0 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
63fda0fee4267a5c6bc1582762827de74321880be296243a6083fe0b58b2f0e7
BLAKE2b-256 checksum
How to use checksums
e1a958aa25fbb563f6f8e2696e033024e9e7cb05b47ec7b772086dc3e8c8325b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl

Download URL priority_expiry_cache-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Size 287.5 kB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
34fb635f608173a08b8e377e42171099c3413a8549ffa5b4e150b6b1175688d8
BLAKE2b-256 checksum
How to use checksums
4c1e79848d75803f798dfbcf4e8ad966772b61cc940ac2cf34c19961713dddf8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp39-none-win_amd64.whl

Download URL priority_expiry_cache-0.1.0-cp39-none-win_amd64.whl
Size 155.0 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
c89fe8eb2c62b1c8b04fdc6dd1120224de59f6cebc514079b42ebce9983104f1
BLAKE2b-256 checksum
How to use checksums
900c5c31f571b7f524e9ad3863ee981e07e3b0e1855c532a271e40c31d964c54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp39-none-win32.whl

Download URL priority_expiry_cache-0.1.0-cp39-none-win32.whl
Size 150.3 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
006e51f6430f41e4b503bdc5e0d935d5478c9d7f8572090af35bd2e8ffcfc8ac
BLAKE2b-256 checksum
How to use checksums
dd97d2b50ec9bd0f194d869c6ffd66b8efaac5166a3473088ccc6cf4c035a1bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL priority_expiry_cache-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.2 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
3f021de40c146281cf5c99b83bb07dbfbeb101aeb3c5a7cb847d18e6142e48f2
BLAKE2b-256 checksum
How to use checksums
936677f18bdac3d511c1390026f394f6e76b63cd84202542be0ff44755ae1bb3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL priority_expiry_cache-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.3 MB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
e857ffbec03b0973e01abc6152b8958a17cb5d6c0078fd8703ce7bc70f020246
BLAKE2b-256 checksum
How to use checksums
f6ad38257a0351071ff3533a7c81fc8d7a5923b2d5c85790e8167e1377a2ecc1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL priority_expiry_cache-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.3 MB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
c879374ca9cd379fa8496159a66e20148f4923dc1817c97583feeaf6228a2fcb
BLAKE2b-256 checksum
How to use checksums
52f7a40578796b8dd5c56e449d7c61ef8f94da0a767db638d246e59a3adec16b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL priority_expiry_cache-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.2 MB
Tags CPython 3.9 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
35d964f4a555ba4f955b86e9ef70f5f015bb042e05056062a7ddf1464f27aaad
BLAKE2b-256 checksum
How to use checksums
8d52415ddb0499152caf8110e93e8724e76fb9a8426300e27213af4ade27144d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL priority_expiry_cache-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.2 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
38d74e54e4659f9f53e9eef5a44d63c66c1cf5d72e86b82045fb6a7340b05231
BLAKE2b-256 checksum
How to use checksums
e20170b257b08fa6ae9097d8a265cb0909a0e6dfc46aade97b542c928e3c7ef5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl

Download URL priority_expiry_cache-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.2 MB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
313ea14b7481d97e2a8ff3ba9b65d91dc65e2a849c803aa340700914e8d0dcf8
BLAKE2b-256 checksum
How to use checksums
46bbe1fe1e0a459998e886b25bc53952f9241565b9a2259fbe07103ce56724fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp38-none-win_amd64.whl

Download URL priority_expiry_cache-0.1.0-cp38-none-win_amd64.whl
Size 154.7 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
cd64d2f727c3c8efdf0ab2b9f82810a54dca331a94bbf5d4964350dc34ed36ff
BLAKE2b-256 checksum
How to use checksums
f31b1588d3d3e4d341cecfccd9ee6c6a072e5365fe1417dca806f0cfcdf26cad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp38-none-win32.whl

Download URL priority_expiry_cache-0.1.0-cp38-none-win32.whl
Size 149.9 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
49a27b79aa9c1682d248dc54974b048b1aa430596219ab6e861a803f56e7a98f
BLAKE2b-256 checksum
How to use checksums
1db2e582a03cf0852eb7a3b606af45e3f9171ae79c3ebef72fe24980e3628650
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL priority_expiry_cache-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.2 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a8977cb3a42478ec06aad20dd9ab38f1edd9ded856e85277a3c6a64b954c3ee3
BLAKE2b-256 checksum
How to use checksums
69ea678e0f88c04ca0e73cd5c33fbc5ceafb10e269eff4e1a44e3ecd9a647224
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL priority_expiry_cache-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.3 MB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
3f7ed678fe9af59a8f999ea4f7336576104bbc0763926d02eafbfc52dcb54025
BLAKE2b-256 checksum
How to use checksums
47c5e427d4fd4c5b8a1fe147df95f0098db42fa814df937d3ae4d5f398960016
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL priority_expiry_cache-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.3 MB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
3e1716c5f8a42a1d371c5e84fe53c175167bbbbc2f8a78c9a8c3827d716ba05a
BLAKE2b-256 checksum
How to use checksums
708f6ab1a205eb9c73cdcb8d6d75021d07334f394d8240f5210167f784670bd1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL priority_expiry_cache-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.2 MB
Tags CPython 3.8 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
152f558b51465157c6c6ab59ecd52d0cb398af0aa45351462267f374af273297
BLAKE2b-256 checksum
How to use checksums
9a3850f5e9d992fd3a29f708ad33664d1e516066d1501b0281df33dc7a135a0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL priority_expiry_cache-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.2 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
dd9a2395c1fa84cb2cb269d84c92b355de5218b6ae0af2f5c464c3a2c8894882
BLAKE2b-256 checksum
How to use checksums
0c9a817661a018a3ca228994f3ce508baf15dceac56e7605de3cd9646f835521
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release files / priority_expiry_cache-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl

Download URL priority_expiry_cache-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.2 MB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
f0f24bc177d639d09f0e7f92e3f7650d10d21ca8436a1a9e00946b4a2846fbb2
BLAKE2b-256 checksum
How to use checksums
b3c49ae94c3db3617f9b5ab11e0085ae661185d552a52819462b74035099ca15
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.4.0

Release history Release notifications | RSS feed

This release

0.1.0 This release

69 release files

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