Package fr.eolya.crawler.cache.mongodb

Examples of fr.eolya.crawler.cache.mongodb.MongoDBDocumentCache


  public static IDocumentCache getDocumentCacheInstance(String type, IDBConnection con, String dbName, String dbCollName, String sourceId) {
    if (!type.equals(con.getType())) return null;
   
    if ("mongodb".equals(type)) {
        return new MongoDBDocumentCache(sourceId, (MongoDBConnection) con, dbName, dbCollName);
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of fr.eolya.crawler.cache.mongodb.MongoDBDocumentCache

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.