[orientdb] Passing double parameters in Java API

2015-02-21 Thread Noorul Farhan Ahmed
Hi, How can I pass double/integer parameters in Java API. Will the following work? OSQLSynchQuery query = new OSQLSynchQuery("select from Profile where name = :name and surname = :surname and age = :age"); Map params = new HashMap(); params.put("name", "Barack"); params.put("surname", "Obama

[orientdb] Re: Where will the plugin java source files / classes go?

2015-02-21 Thread florin
Works but found the documentation lacking and outdated: Given the example, the server and class url pattern don't match: server: pattern="GET|hello/*" vs class source: @Override public String[] getNames() { return new String[]{"GET|hello/* POST|hello/*"}; } The api change is n

[orientdb] Re: lucene full text composite index

2015-02-21 Thread Aris Alexis
nope. to make it more clear the following sequence fails CREATE INDEX User.combined_name ON User(firstName,lastName,email,username) FULLTEXT ENGINE LUCENE; insert into User SET username='aris',emai='l...@lalaland.com' select * from User where [firstName,lastName,email,username] LUCENE "ari*" O

[orientdb] Re: lucene full text composite index

2015-02-21 Thread Vitor Enes Duarte
See this link . I believe you have to: select * from User where [firstName,lastName,email,username] LUCENE "ari*" so that the index gets triggered. sexta-feira, 20 de Fevereiro de 2015 às 11:

Re: [orientdb] Record deadlock issue in 2.0.2

2015-02-21 Thread Kareem Jabr
Hi, I already set in the properties of *orientdb-server-config.xml* and I removed from my code this part: OGlobalConfiguration.STORAGE_LOCK_TIMEOUT.setValue(5 * 60 * 1000); I am also facing another issue when stopping the orientdb server I still can see the process running when I execute: ps au

Re: [orientdb] Record deadlock issue in 2.0.2

2015-02-21 Thread Kareem Jabr
Hi, I am tried the following after seeing it somewhere here: OGlobalConfiguration.STORAGE_LOCK_TIMEOUT.setValue(5 * 60 * 1000); but the same issue occurs. How and where to set storage.record.lockTimeout? Do I have to do it in inside the orientdb-server-config.xml? On Friday, February 20, 2015