Skip to content

Commit

Permalink
increased number of links limitation from 1000 to 10000 for rss feeds
Browse files Browse the repository at this point in the history
and html documents
  • Loading branch information
Orbiter committed Mar 17, 2013
1 parent 243b66a commit 17ae51e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion defaults/solr.webgraph.schema
Expand Up @@ -156,7 +156,7 @@ target_path_folders_sxt
## the values from key-value pairs in the search part of the url (target)
#target_parameter_value_sxt

## "depth of web page according to number of clicks from the 'main' page, which is the page that appears if only the host is entered as url (target)
## depth of web page according to number of clicks from the 'main' page, which is the page that appears if only the host is entered as url (target)
#target_clickdepth_i

## host of the url (target)
Expand Down
2 changes: 1 addition & 1 deletion source/net/yacy/cora/document/RSSFeed.java
Expand Up @@ -31,7 +31,7 @@

public class RSSFeed implements Iterable<RSSMessage> {

public static final int DEFAULT_MAXSIZE = 1000;
public static final int DEFAULT_MAXSIZE = 10000;

// class variables
private RSSMessage channel;
Expand Down
2 changes: 1 addition & 1 deletion source/net/yacy/document/parser/htmlParser.java
Expand Up @@ -51,7 +51,7 @@
public class htmlParser extends AbstractParser implements Parser {

private static final Pattern patternUnderline = Pattern.compile("_");
private static final int maxLinks = 1000;
private static final int maxLinks = 10000;

public htmlParser() {
super("Streaming HTML Parser");
Expand Down

0 comments on commit 17ae51e

Please sign in to comment.