We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent4ed9e49 commite2f61c2Copy full SHA for e2f61c2
readme.md
@@ -158,6 +158,7 @@ print('Time taken (memoized function using manual decorator):', time.time() - st
158
```
159
160
And here’s the output:
161
+
162

163
164
Notice the time difference between the two functions. Both take almost
@@ -231,6 +232,7 @@ print('Time taken (memoized function with LRU cache):', time.time() - start_time
231
232
233
234
This produced the following output:
235
236

237
238
###Performance comparison
@@ -248,6 +250,7 @@ three functions for different numbers of requests to these functions:
248
250
As the number of requests to the functions increases, you can see a
249
251
significant reduction in execution times using the caching strategy. The
252
following comparison chart depicts these results:
253
254

255
256
The comparison results clearly show that using a caching strategy in