!7 p { bench 1000000 { ai_parseTriple("same -> old -> same old"); } ai_parseTriple_setCacheSize(2); bench 1000000 { ai_parseTriple("same -> old -> same old"); ai_parseTriple("two -> also -> work"); } ai_parseTriple_setCacheSize(1); bench 1000000 { ai_parseTriple("same -> old -> same old"); ai_parseTriple("but -> not -> now"); } ai_parseTriple_setCacheSize(1000); int i = 0; bench 1000000 { ai_parseTriple("same -> old -> same old" + i++); } bench 1000000 { ai_parseTriple(aGlobalID() + " -> " + aGlobalID() + " -> " + aGlobalID()); } }