Persistent storage can help protect
critical data from eviction, and
educe the chance of data loss.
Are you sure this keeps the data when the user deletes their browser data? To me it sounds like it does not: Persistent storage is not deleted by the browser,
even if storage is running low. It will only be
deleted if the user chooses to remove it via
their site settings. def main():
r = 0
for j in range(20):
for i in range(1000000):
r += len(str(i))
print(r)
main()
When I execute it: time python3 test.py
I get 8.3s execution time. <?php
function main() {
$r = 0;
for ($j=0;$j<20;$j++)
for ($i=0;$i<1000000;$i++)
$r += strlen($i);
print("$r\n");
}
main();
When I execute it: time php test.php
Finishes in 1.4s here. So about 6x faster. time pypy test.py
Gives me 0.49s. Wow!
The design will look like this:
https://www.gibney.de/preview
The big blue arrow leads to the articles which are related to the topic in the center.
Now parsing through a big German text corpus to calculate where the research topics will be placed on the map.