Wanting to load Javascript from 18 domains sounds like record spam to me. More than on your typical russian movie streaming backdooring attempts
PageRank algorithm for graph databases
31–40 of 42 posts
Re: PageRank algorithm for graph databases
#32Earlier quoted context omitted.
There are known link structure metrics besides PageRank that both scale better and are harder to game, though I'm not sure how their effectiveness in ranking compares to PageRank in the un-gamed case. I used to work on Google web search indexing, almost 20 years ago, and (1) it has been public knowledge since around the time I left that PageRank was just one of a plethora of ranking signals going into the Learn To Ra…
>There are known link structure metrics besides PageRank that both scale better and are harder to game Any examples?
Re: PageRank algorithm for graph databases
#33Earlier quoted context omitted.
There are known link structure metrics besides PageRank that both scale better and are harder to game, though I'm not sure how their effectiveness in ranking compares to PageRank in the un-gamed case. I used to work on Google web search indexing, almost 20 years ago, and (1) it has been public knowledge since around the time I left that PageRank was just one of a plethora of ranking signals going into the Learn To Ra…
>There are known link structure metrics besides PageRank that both scale better and are harder to game Any examples?
Re: PageRank algorithm for graph databases
#34Earlier quoted context omitted.
>There are known link structure metrics besides PageRank that both scale better and are harder to game Any examples?
For one, the TrustRank paper discusses some variations on link structure ranking, some of which are less computationally intensive than PageRank for incrementally updating. Back 20 years ago, Google News and the more frequently updated web pages would have an incremental estimated PageRank patched in for updates that came faster than PageRank was re-calculated. https://en.wikipedia.org/wiki/TrustRank
paper link:
Re: PageRank algorithm for graph databases
#35BTW, is there a good "graph layer" for SQLite? I understand that graph databases use specific data structures to optimize for graph queries instead of row-oriented but sometimes you need something in the middle: representing graphs and doing basic queries.
An algorithm that traverses a graph by performing hundreds of individual SELECT queries to follow a path should work much better against SQLite than against most other relational databases, due to the lack of network overhead in making each of those queries.
Re: PageRank algorithm for graph databases
#36BTW, is there a good "graph layer" for SQLite? I understand that graph databases use specific data structures to optimize for graph queries instead of row-oriented but sometimes you need something in the middle: representing graphs and doing basic queries.
I'm interested in this too. My hunch is that SQLite would be a particularly good fit for a whole bunch of queries thanks to this characteristic: https://www.sqlite.org/np1queryprob.html - "Many Small Queries Are Efficient In SQLite" An algorithm that traverses a graph by performing hundreds of individual SELECT queries to follow a path should work much better against SQLite than against most other relational database…
Re: PageRank algorithm for graph databases
#37BTW, is there a good "graph layer" for SQLite? I understand that graph databases use specific data structures to optimize for graph queries instead of row-oriented but sometimes you need something in the middle: representing graphs and doing basic queries.
Re: PageRank algorithm for graph databases
#38Earlier quoted context omitted.
The PageRank algorithm can be used for so much more than... well... page ranking :) hence the article :)
Yes, it would have been nice if the article looked into ways in which the algorithm could be gamed, for the proposed applications.
With the other examples I am not sure they can get an advantage by gaming it. In addition the pangrank models and how they weight it are more secret than Google. Google’s algorithm is secret but leaky (the search results are public)
Re: PageRank algorithm for graph databases
#39BTW, is there a good "graph layer" for SQLite? I understand that graph databases use specific data structures to optimize for graph queries instead of row-oriented but sometimes you need something in the middle: representing graphs and doing basic queries.
Sounds like EdgeDB [0] might be of interest to you [0] https://www.edgedb.com
Re: PageRank algorithm for graph databases
#40BTW, is there a good "graph layer" for SQLite? I understand that graph databases use specific data structures to optimize for graph queries instead of row-oriented but sometimes you need something in the middle: representing graphs and doing basic queries.
Sounds like EdgeDB [0] might be of interest to you [0] https://www.edgedb.com