Hey Peter, Thanks for the awesome work!
On my end, on Mac OS X it's still not building though. I've attached the log of mvn clean package. -M. On Tue, May 31, 2011 at 10:27 AM, Peter Neubauer < peter.neuba...@neotechnology.com> wrote: > Marcelo, John, > things should be working now, the artifacts are at > https://repo.neo4j.org/content/groups/public/ now. Please try and give > feedback! > > Cheers, > > /peter neubauer > > GTalk: neubauer.peter > Skype peter.neubauer > Phone +46 704 106975 > LinkedIn http://www.linkedin.com/in/neubauer > Twitter http://twitter.com/peterneubauer > > http://www.neo4j.org - Your high performance graph database. > http://startupbootcamp.org/ - Öresund - Innovation happens HERE. > http://www.thoughtmade.com - Scandinavia's coolest Bring-a-Thing party. > > > On Mon, May 30, 2011 at 1:50 PM, Marcelo Barbudas <nos...@gmail.com> > wrote: > > > I'm hoping you'll have some free time and are in the mood to fix the > > build today:) And then I'll owe you a beer. > > > > > > On 05/30/2011 06:09 AM, Peter Neubauer wrote: > > > Awh, > > > the build system right now is screwed up, so the latest changes are not > > > published, and I worked on this last night. I suggest building Neo4j > > > artifacts yourself by checking out > https://github.com/neo4j/communityand > > > > > > mvn clean install (can take a while) > > > > > > Then you should be able to build the Gremlin Plugin against that. I > hope > > the > > > build will be working again today, so this is not required. > > > > > > Sorry for the inconvenience! > > > > > > Cheers, > > > > > > /peter neubauer > > > > > > GTalk: neubauer.peter > > > Skype peter.neubauer > > > Phone +46 704 106975 > > > LinkedIn http://www.linkedin.com/in/neubauer > > > Twitter http://twitter.com/peterneubauer > > > > > > http://www.neo4j.org - Your high performance graph > > database. > > > http://startupbootcamp.org/ - Öresund - Innovation happens HERE. > > > http://www.thoughtmade.com - Scandinavia's coolest Bring-a-Thing > party. > > > > > > > > > On Sun, May 29, 2011 at 11:46 PM, John Bale <nos...@gmail.com> wrote: > > > > > >> Spoke too soon. The gremlin plugin is not building. > > >> > > >> Downloaded: > > >> > > >> > > > https://m2.neo4j.org/content/groups/public/org/neo4j/server-api/1.4-SNAPSHOT/maven-metadata.xml(310 > > >> B at 0.8 KB/sec) > > >> [WARNING] Could not transfer metadata > > >> org.neo4j:server-api:1.4-SNAPSHOT/maven-metadata.xml from/to > > >> maven-repository.dev.java.net (http://download.java.net/maven/1): No > > >> connector available to access repository > maven-repository.dev.java.net( > > >> http://download.java.net/maven/1) of type legacy using the available > > >> factories WagonRepositoryConnectorFactory > > >> [INFO] > > >> [INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) > @ > > >> neo4j-gremlin-plugin --- > > >> > > >> -M. > > >> > > >> On Mon, May 30, 2011 at 12:22 AM, Marcelo Barbudas <nos...@gmail.com> > > >> wrote: > > >> > > >>> Hey Peter! > > >>> > > >>> I got the gremlin plugin working. That was pretty easy. > > >>> > > >>> So from what I understand I should create a plugin that used the > > >>> graph-matching api to look for patterns. > > >>> > > >>> I create a virtual graph using patternRelationship and patternNodes > and > > >>> then starting from a node as an input parameter I start searching for > > >>> the virtual graph. > > >>> > > >>> What happens on partial likes: like user X likes A, B, C; user Y > likes > > >>> A, B. > > >>> > > >>> In this case if I search for commonalities to X it won't find Y > because > > >>> Y is missing a like. Or this is how it's currently playing in my mind > > :) > > >>> > > >>> > > >>> I'm kinda new in the Java world, what would I have to do to integrate > > >>> graph-matching repository in a plugin? > > >>> > > >>> -M. > > >>> > > >>> > > >>> On 05/29/2011 10:41 PM, Peter Neubauer wrote: > > >>>> Marcelo, > > >>>> you can use the graphmatching libs through a custom extension, see > > >>>> http://docs.neo4j.org/chunked/snapshot/server-plugins.html . Also, > > >>> Ggremlin > > >>>> is accessible through REST using the Neo4j Gremlin Plugin, soon to > be > > >>>> packaged as a standard plugin, see > > >>>> https://github.com/peterneubauer/neo4j-gremlin-plugin > > >>>> > > >>>> Once you have done your graphmatching plugin (keep us updated on > that > > >>>> progress) or the Gremlin plugin, you should be able to use neography > > to > > >>>> point to that URIs. > > >>>> > > >>>> Does that help? > > >>>> > > >>>> Cheers, > > >>>> > > >>>> /peter neubauer > > >>>> > > >>>> GTalk: neubauer.peter > > >>>> Skype peter.neubauer > > >>>> Phone +46 704 106975 > > >>>> LinkedIn http://www.linkedin.com/in/neubauer > > >>>> Twitter http://twitter.com/peterneubauer > > >>>> > > >>>> http://www.neo4j.org - Your high performance graph > > >>> database. > > >>>> http://startupbootcamp.org/ - Öresund - Innovation happens HERE. > > >>>> http://www.thoughtmade.com - Scandinavia's coolest Bring-a-Thing > > >> party. > > >>>> > > >>>> > > >>>> On Sun, May 29, 2011 at 9:37 PM, Marcelo Barbudas <nos...@gmail.com > > > > >>> wrote: > > >>>> > > >>>>> Hey Jim, > > >>>>>> > > >>>>>> This list is pretty friendly, and since Neo4j is quite new itself > > >> we're > > >>>>> all newbies one way or another :-) > > >>>>>> > > >>>>> Thanks for making me feel welcome. > > >>>>> > > >>>>>>> What's the best way to find commonalities between two people > (based > > >> on > > >>>>>>> likes)? Is it possible to put a weight on the like relationship? > > >> Like > > >>>>>>> for example if someone likes fish a lot more than bread. > > >>>>>> > > >>>>>> Using a weighted graph is a pretty sensible idea here. But if > you're > > >>>>> looking for patterns in a graph (people who like fish and chips, > and > > >> who > > >>>>> like ice-cream) you might also consider using the graph-matching > > >>> library: > > >>>>>> > > >>>>>> https://github.com/neo4j/graph-matching/ > > >>>>>> > > >>>>>> In the MVN repo (ivy): > > >>>>>> > > >>>>>> <dependency org="org.neo4j" name="neo4j-graph-matching" > rev="0.8"/> > > >>>>>> > > >>>>> Is it possible to use this with the REST server and the ruby > > >> 'neography' > > >>>>> wrapper? > > >>>>> > > >>>>> -M. > > >>>>> _______________________________________________ > > >>>>> Neo4j mailing list > > >>>>> User@lists.neo4j.org > > >>>>> https://lists.neo4j.org/mailman/listinfo/user > > >>>>> > > >>>> _______________________________________________ > > >>>> Neo4j mailing list > > >>>> User@lists.neo4j.org > > >>>> https://lists.neo4j.org/mailman/listinfo/user > > >>> > > >>> > > >> _______________________________________________ > > >> Neo4j mailing list > > >> User@lists.neo4j.org > > >> https://lists.neo4j.org/mailman/listinfo/user > > >> > > > _______________________________________________ > > > Neo4j mailing list > > > User@lists.neo4j.org > > > https://lists.neo4j.org/mailman/listinfo/user > > > > _______________________________________________ > > Neo4j mailing list > > User@lists.neo4j.org > > https://lists.neo4j.org/mailman/listinfo/user > > > _______________________________________________ > Neo4j mailing list > User@lists.neo4j.org > https://lists.neo4j.org/mailman/listinfo/user >
_______________________________________________ Neo4j mailing list User@lists.neo4j.org https://lists.neo4j.org/mailman/listinfo/user