mirror of
https://github.com/wallabag/wallabag.git
synced 2025-09-15 18:57:05 +00:00
Use a better index for hashed_url
It'll most often be used in addition to the `user_id`. Also, automatically generate the hash when saving the url. Switch from `md5` to `sha1`.
This commit is contained in:
parent
9c2b2aae70
commit
8a64566298
7 changed files with 21 additions and 23 deletions
|
@ -69,7 +69,7 @@ class GenerateUrlHashesCommand extends ContainerAwareCommand
|
|||
|
||||
$i = 1;
|
||||
foreach ($entries as $entry) {
|
||||
$entry->setHashedUrl(hash('md5', $entry->getUrl()));
|
||||
$entry->setHashedUrl(hash('sha1', $entry->getUrl()));
|
||||
$em->persist($entry);
|
||||
|
||||
if (0 === ($i % 20)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue