website/content/blog/pycacheprop.md

29 lines
679 B
Markdown
Raw Normal View History

2020-04-18 18:41:55 -04:00
---
title: "Quick Python: Cached Property"
date: 2020-04-18T18:29:21-04:00
draft: false
2022-01-02 14:24:29 -05:00
tags: ["Python"]
2020-04-18 18:41:55 -04:00
---
If you have a property in an object that only needs to be computed once, consider using `cached_property` to store the result and serve for future function calls.
```python
import functools
class Number:
def __init__(self, n):
self.n = n
@functools.cached_property
def is_prime(self):
return all(self.n % i for i in range(2, self.n))
```
Let's test it with the Mersenne prime `524287`.
```python
n = Number(524287)
n.is_prime
```
After maybe 1-2 seconds of thinking you should get `True.`
Run it again and the result will be instantaneous!