Closed (won't fix)
Project:
Drupal core
Version:
8.0.x-dev
Component:
search.module
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
11 May 2008 at 18:19 UTC
Updated:
29 Jul 2014 at 17:53 UTC
Jump to comment: Most recent file
Comments
Comment #1
BlakeLucchesi commentedThis patch adds a ranking hook definition for the node module so that nodes with more inbound links can receive a higher relevancy factor.
Note: Because of the way the link finder works, you may need to run cron a couple of times to ensure that the links were counted. Links get inserted into the table: search_node_links first, and each node that was linked to is then tagged for re-indexing, during this second indexing we count the number of links and store them in table: search_node_links_total.
Comment #2
douggreen commentedI don't like that there are up to 3 extra queries on every node that gets indexed, especially if this ranking isn't used.
I'd have a look at putting something like this in search_update_totals:
The search_sid_dirty() function doesn't exist. I suspect that this will be useful so that the DELETE and INSERT only affect a dozen nodes instead of ALL of them.
Notice that I'm only doing the update if the node_rank_link is used. Because of this, you'll need to do two more queries when the node_rank_link gets set to something other than 0, maybe in a submit handler from a form_alter?
Comment #3
keith.smith commentedMinor, but at least one code comment does not end in a full stop (period).
Comment #4
keith.smith commentedI have no real comment on the patch regarding post #2, Doug is in a much better position to evaluate its merits.
However, the attached patch makes the following changes from the previous patch:
+ 'description' => t('The number of links that the searchable item has linking to it')
---
+ 'description' => t('The number of links that the searchable item has linking to it.')
+ 'description' => t('The number of links that the searchable item has linking to it')
---
+ 'description' => t('The number of links that the searchable item has linking to it.')
+ // Update node_links_totals count for this node
---
+ // Update node_links_totals count for this node.
Comment #5
cwgordon7 commentedThere is no attached patch in #4
Comment #6
keith.smith commentedHmmm. D.o eats another patch. It's on my office computer so I'll upload it tomorrow. Thanks for noticing!
Comment #7
keith.smith commentedI believe that I meant to upload this patch (or did, and it went somewhere mysterious).
Comment #8
Anonymous (not verified) commentedThe last submitted patch failed testing.
Comment #9
jhodgdonBumping to 8.x at this point.
Comment #10
jhodgdonDrupal 8 core search had a totally broken implemention of the node link checking stuff, and so when we converted search to a plugin system, we stopped supporting node link checking. This would need to be done in a contrib module now. Sorry...