Package com.googlecode.lucene.gae.datastore.file

Examples of com.googlecode.lucene.gae.datastore.file.DataStoreFileRepository


  @Before
  public void setUp() throws Exception {

    TestUtils.setUp();

    repository = new DataStoreFileRepository("teste");

    DataStoreFile file1 = createDataStoreFile("teste1");
    DataStoreFile file2 = createDataStoreFile("teste2");
    DataStoreFile file3 = createDataStoreFile("teste3");
    repository.put(file1);
View Full Code Here


    this(DEFAULT_INDEX_NAME);
  }

  public DataStoreDirectory(String indexName) throws IOException {
    setLockFactory(NoLockFactory.getNoLockFactory());
    this.repository = new DataStoreFileRepository(indexName);
  }
View Full Code Here

TOP

Related Classes of com.googlecode.lucene.gae.datastore.file.DataStoreFileRepository

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.