AGFreetextSearch.java

package com.franz.ag.examples;

import com.franz.ag.*;

public class AGFreetextSearch {

    /**
     * Demonstrates some basics of Freetext search 
     *
     * @param args unused
     * @throws AllegroGraphException
     */
    public static void main(String[] args) throws AllegroGraphException {       
        // Connect to server, which must already be running.
        AllegroGraphConnection ags = new AllegroGraphConnection();
        try {
            ags.enable();
        } catch (Exception e) {
            throw new AllegroGraphException("Server connection problem", e);
        }

        // Create a fresh triple store
        AllegroGraph ts = ags.renew("freetextsearch", AGPaths.TRIPLE_STORES);

        // Register any predicates whose objects are to be searched
        ts.registerFreetextPredicate("<http://www.w3.org/2000/01/rdf-schema#comment>");
        
        // Add some triples to the store
        ts.addStatement("\"Jans\"", "!rdfs:comment", "\"Born in Emmen in the Netherlands\"");
        ts.addStatement("\"Gary\"", "!rdfs:comment", "\"Born in Springfield in the USA\"");
        ts.addStatement("\"Henk\"", "!rdfs:label", "\"Born in Emmermeer in the Netherlands\"");
        
        // Search for subjects whose object contains emmen and born
        ValueObject[] v = ts.getFreetextUniqueSubjects("(and 'emmen' 'born')");
        AGUtils.printObjectArray("Subjects matching search: (and 'emmen' 'born')", v);
        
        // Search the store for statements whose object contains emmen and born
        Cursor cc = ts.getFreetextStatements("(and 'emmen' 'born')");
        AGUtils.showTriples(cc);
        
        // Close the triple store and disconnect from the server
        ts.closeTripleStore();
        ags.disable();
    }

}

Up | Next