[orientdb] FULLTEXT index bug

2014-04-25 Thread Erik Peterson
Using 1.7-rc1 and creating an index with FULLTEXT or FULLTEXT_HASH_INDEX causes the CONTAINSTEXT clause to work ONLY with complete words -- it doesn't work with character sequences. - worked prior to index to return book and food records but now fails... select from myclass where myfield CONTAI

[orientdb] Re: Issue between Gremlin and V1.7

2014-04-25 Thread Anthony Buckton
HI Luca at al, An update: I was using Gremlin downloaded from the Gremlin site!! It uses the V1.5 JAR files for Orient and I'm guessing that's why I had both of my problems. I've now re-pointed by pathing to use the Gremlin that comes with my Orientdb and it's all working. Remote, local and

[orientdb] outdated doc content

2014-04-25 Thread Ted Smith
Hi, According to this page https://github.com/orientechnologies/orientdb/wiki/Concepts The record never looses its identity unless is deleted. Once deleted its identity could be recycled and assigned to a new record Is it still true. I remember for plocal, RID always increment without reus

[orientdb] import export doesn't import my classes using 1.6.4

2014-04-25 Thread alexander anguiano
I'm trying to export and import a graph database using 1.6.4. My class are not being create on the import. I do this export database assets.json DROP DATABASE remote:localhost/assets root *** and it generates the assets.json.gz file. I open it up and my class are in there. I drop the da

Re: [orientdb] getValues() from OIndex is gone in latest SNAPSHOT

2014-04-25 Thread Andrey Lomakin
Hi, It works with the same efficiency under the hood. On Fri, Apr 25, 2014 at 6:43 PM, wrote: > Hi, > > Currently I need to calll "OrientVertex oEntity = > graph.getVertex(returnedtem.getValue())" to fetch each Vertex/Edge it > self. > Is there a more efficient way to do that? > > I mean, to r

Re: [orientdb] can't get GratefulDeadConcerts demo to work distributed

2014-04-25 Thread Tyler Dinh
Alex, It seemed you have the encountered the same problem I had seen. You're running the two instances on windows. Is this correct? You need to look at my other post for how to fix the code to get it to work. Tyler -- --- You received this message because you are subscribed to the Google Gr

Re: [orientdb] can't get GratefulDeadConcerts demo to work distributed

2014-04-25 Thread Tyler Dinh
I don't think this specific problem was fixed unless I'm looking at the wrong branch. This issue occurs on Windows because of the db path comparison. I checked the develop branch and didn't see the fix. Am I looking at the wrong branch? Tyler On Friday, April 25, 2014 3:11:15 AM UTC-7, Lvc@ w

Re: [orientdb] getValues() from OIndex is gone in latest SNAPSHOT

2014-04-25 Thread stefan
Hi, Currently I need to calll "OrientVertex oEntity = graph.getVertex(returnedtem.getValue())" to fetch each Vertex/Edge it self. Is there a more efficient way to do that? I mean, to retrieve Documents instead of OIdentifiable, or would that not save any time? Something like ".iterateEntries(re

Re: [orientdb] Re: Problems and Exceptions with Distributed DB Configuration

2014-04-25 Thread OK
Hi Luca, could you please help me again and give me some hints how to solve the described problem (at the bottom)? Thank you very much. :) Am Sonntag, 20. April 2014 20:28:24 UTC+2 schrieb OK: > > Hi, > thanks for your answer. Where can I get the latest snapshot? I use 1.7 RC2 > and I've downlo

Re: [orientdb] Re: Oriendb Lucene

2014-04-25 Thread Glenn Goodrich
That'd be great. FWIW, I am running 1.7 (rc1 in prod, rc2 in dev) Thanks, Glenn Enrico Risa wrote: Hi Glenn, I will make a release as soon as i can, so you can start testing it. For the assembly i will remove the target release 1.7. Meamwhile try to put 1.6 in the pom.xml Enrico Il 25/apr/20

Re: [orientdb] Re: Oriendb Lucene

2014-04-25 Thread Enrico Risa
Hi Glenn, I will make a release as soon as i can, so you can start testing it. For the assembly i will remove the target release 1.7. Meamwhile try to put 1.6 in the pom.xml Enrico Il 25/apr/2014 15:05 "Glenn Goodrich" ha scritto: > So, the wiki says to either grab a release from the releases pa

[orientdb] Re: Oriendb Lucene

2014-04-25 Thread Glenn Goodrich
So, the wiki says to either grab a release from the releases page, and there aren't any, or to mvn assembly:assembly which results in Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project lucene: Fatal error compiling: invalid target

Re: [orientdb] is there a way to return Record from Function ?

2014-04-25 Thread Payne Chu
But Artem, I think this issue just same as https://github.com/orientechnologies/orientdb/issues/2264 I still suggest instead of return a fake record always. may should just return that object (scalar, string or record) directly without need the fake record. On Friday, April 25, 2014 7:57:22 PM

Re: [orientdb] is there a way to return Record from Function ?

2014-04-25 Thread Payne Chu
Thanks Artem, sure created https://github.com/orientechnologies/orientdb/issues/2283 On Friday, April 25, 2014 6:40:43 PM UTC+8, Artem Orobets wrote: > > That is strange. Could you create a ticket? > > Best regards, > Artem Orobets > > *Orient Technologies the Company behind OrientDB* > > > 2014-

[orientdb] seems not yet support prepared statement for function call ?

2014-04-25 Thread Payne Chu
SELECT test(:aid) <- it will throw exception. Do any plan to support it ? -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving emails from it, send an email to orient-database+unsubscr...@googlegr

Re: [orientdb] can't access record in ajax using orientdb-php

2014-04-25 Thread Artem Orobets
Hi Jaya, The issue seems to be in json_encode. It is a driver specific code, could you create an issue here . As a workaround you could try to convert records to JSON on server side by using toJSON() function in SQL query Best regards, Ar

Re: [orientdb] [Java] [1.7-rc2] Issues with Class Inheritance and Automatic Indices

2014-04-25 Thread Artem Orobets
Yeah, the query your proposed should work but it is not quite efficient. If performance of the query is critical for you having of separate NOTUNIQUE index is more efficient. As for optimization, I agree usage of FULLTEXT + filter is better then nothing. Could you create a ticket for that? Best r

Re: [orientdb] is there a way to return Record from Function ?

2014-04-25 Thread Artem Orobets
That is strange. Could you create a ticket? Best regards, Artem Orobets *Orient Technologies the Company behind OrientDB* 2014-04-25 4:31 GMT+03:00 Payne Chu : > Thanks Artem, > I tried, > SELECT expand(test()) > SELECT expand('test') FROM (SELECT test()) > traverse test from (SELECT test()) >

Re: [orientdb] can't get GratefulDeadConcerts demo to work distributed

2014-04-25 Thread Luca Garulli
Hi, these problems were fixed in current OrientDB 1.7-SNAPSHOT. May you try with this version please? (it will be released as final in a couple of weeks). Lvc@ On 25 April 2014 00:26, alexpmorris wrote: > Ah thank you, I think I did that by accident, since I was trying to > resolve another iss

Re: [orientdb] OrientEdge.java

2014-04-25 Thread Luca Garulli
Hi, I suggest you to use OrientDB 1.7rc2 and BP 2.5.0-SNAPSHOT or OrientDB 1.7-SNAPSHOT and BP 2.5.0. About the problem, seems a string was found instead of a link. May you dump the content of the graph element? Lvc@ On 25 April 2014 11:13, Abhishek Jha wrote: > Hey I am using OrientDB 1.7.R

Re: [orientdb] Re: Oriendb Lucene

2014-04-25 Thread stefan
thank you both :) On Friday, 25 April 2014 09:30:08 UTC, Enrico Risa wrote: > > Hi Stefan, > i've updated the wiki, now you can find some example on how to create it > with Java Api > > Enrico > > > 2014-04-25 10:56 GMT+02:00 Luca Garulli >: > >> Hi Stefan, >> The OrientDB Lucene module is perfe

Re: [orientdb] Re: Oriendb Lucene

2014-04-25 Thread Enrico Risa
Hi Stefan, i've updated the wiki, now you can find some example on how to create it with Java Api Enrico 2014-04-25 10:56 GMT+02:00 Luca Garulli : > Hi Stefan, > The OrientDB Lucene module is perfectly integrated in OrientDB, so you can > create indexes in the same exact way but passing "LUCENE

[orientdb] OrientEdge.java

2014-04-25 Thread Abhishek Jha
Hey I am using OrientDB 1.7.RC2 and Blueprint 2.6.0 - SNAPSHOT public static OIdentifiable getConnection(final ODocument iEdgeRecord, final Direction iDirection) { return iEdgeRecord.rawField(iDirection == Direction.OUT ? OrientBaseGraph.CONNECTION_OUT : OrientBaseGraph.CONNECTION_IN); }

Re: [orientdb] Re: Oriendb Lucene

2014-04-25 Thread Luca Garulli
Hi Stefan, The OrientDB Lucene module is perfectly integrated in OrientDB, so you can create indexes in the same exact way but passing "LUCENE" as engine. Lvc@ On 24 April 2014 23:37, wrote: > Hi, > > Is there a Java API available to create those indexes? > > Thank you again, > -Stefán > > >

[orientdb] Re: Oriendb Lucene

2014-04-25 Thread Łukasz Twarogowski
Haven't tried yet, but it sounds fantastic! Thanks a lot! Lukasz On Thursday, April 24, 2014 6:14:14 PM UTC+2, Enrico Risa wrote: > > Hi All, > > a new module for OrientDB is available. The first integration OrientDB / > Lucene is out. > The integration for now is focused on Full Text Index and