Examples of storeMapping()


Examples of org.apache.mahout.cf.taste.model.IDMigrator.storeMapping()

  public void testStore() throws Exception {
    IDMigrator migrator = new MemoryIDMigrator();
    long id = migrator.toLongID(DUMMY_STRING);
    assertNull(migrator.toStringID(id));
    migrator.storeMapping(id, DUMMY_STRING);
    assertEquals(DUMMY_STRING, migrator.toStringID(id));
  }

  public void testInitialize() throws Exception {
    IDMigrator migrator = new MemoryIDMigrator();
View Full Code Here

Examples of org.apache.mahout.cf.taste.model.UpdatableIDMigrator.storeMapping()

  @Test
  public void testStore() throws Exception {
    UpdatableIDMigrator migrator = new MemoryIDMigrator();
    long id = migrator.toLongID(DUMMY_STRING);
    assertNull(migrator.toStringID(id));
    migrator.storeMapping(id, DUMMY_STRING);
    assertEquals(DUMMY_STRING, migrator.toStringID(id));
  }

  @Test
  public void testInitialize() throws Exception {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.