Jose,
If you're using Maven for your development, then you can just add a
dependency on whatever Neo4j version you'd like, and you'll get the sources
along with that. We're encouraging you to use the latest milestone build if
possible:
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j</artifactId>
<version>1.3.M02</version>
</dependency>
If you just want the sources you can access them via the legacy svn
repository:
https://svn.neo4j.org/components/kernel/tags/1.2-1.2/ for kernel, for
example.
Or you can go to e.g. maven central and get the sources there:
https://oss.sonatype.org/ -> search for "neo4j" -> show all versions for
component you're interested in -> sources.jar for 1.2
Regards,
David
On Tue, Feb 15, 2011 at 1:40 PM, Jose Angel Inda Herrera <
[email protected]> wrote:
> hello
> how to download the source of neo4j 1.2 becouse i have a 1.1 version and it
> not have the interface RelationshipIndex
> ----- Mensaje original -----
> De: "Mattias Persson" <[email protected]>
> Para: "Neo4j user discussions" <[email protected]>
> Enviados: Martes, 15 de Febrero 2011 15:51:54 (GMT-0500) Auto-Detected
> Asunto: Re: [Neo4j] about relationship
>
> Does this help:
>
> http://wiki.neo4j.org/content/Index_Framework#Relationship_indexes
>
> ?
>
> 2011/2/15 Jose Angel Inda Herrera <[email protected]>
>
> > hello Mattias
> > the RelationshipIndex class which would. I have that to implement this
> > class.
> > thank befoorhand
> > ----- Mensaje original -----
> > De: "Mattias Persson" <[email protected]>
> > Para: "Neo4j user discussions" <[email protected]>
> > Enviados: Lunes, 14 de Febrero 2011 4:18:33 (GMT-0500) Auto-Detected
> > Asunto: Re: [Neo4j] about relationship
> >
> > You mean in the most efficient way? Currently you'll have to go with a
> > relationship index if you have many edges and would like to do a fast
> > lookup
> > for a relationship between two nodes. You can index relationships just as
> > you do nodes:
> >
> > RelationshipIndex index = graphDb.index().forRelationships(
> > "my-relationships" );
> > index.add( myRelationship, "myKey", "myValue" );
> > ...
> > // Either if you query for a specific property:
> > index.get( "myKey", "myValue", startNode, endNode );
> > // Or if you just query using the nodes
> > index.get( null, null, startNode, endNode );
> >
> > The other way is to loop relationships from one node and see if the
> > otherNode of those relationships matches. Might be slower though
> >
> > Best,
> > Mattias
> >
> > 2011/2/10 Jose Angel Inda Herrera <[email protected]>
> >
> > >
> > > hello list,
> > > How to get an edge in the graph (in this case a relationship) having
> the
> > > two nodes of this relationship,
> > >
> > > thank beforhand
> > > _______________________________________________
> > > Neo4j mailing list
> > > [email protected]
> > > https://lists.neo4j.org/mailman/listinfo/user
> > >
> >
> >
> >
> > --
> > Mattias Persson, [[email protected]]
> > Hacker, Neo Technology
> > www.neotechnology.com
> > _______________________________________________
> > Neo4j mailing list
> > [email protected]
> > https://lists.neo4j.org/mailman/listinfo/user
> > _______________________________________________
> > Neo4j mailing list
> > [email protected]
> > https://lists.neo4j.org/mailman/listinfo/user
> >
>
>
>
> --
> Mattias Persson, [[email protected]]
> Hacker, Neo Technology
> www.neotechnology.com
> _______________________________________________
> Neo4j mailing list
> [email protected]
> https://lists.neo4j.org/mailman/listinfo/user
> _______________________________________________
> Neo4j mailing list
> [email protected]
> https://lists.neo4j.org/mailman/listinfo/user
>
--
David Montag
Neo Technology, www.neotechnology.com
Cell: 650.556.4411
[email protected]
_______________________________________________
Neo4j mailing list
[email protected]
https://lists.neo4j.org/mailman/listinfo/user