Re: [basex-talk] Indexes getting removed after update operation in database

2020-06-02 Thread DK Singh
Thanks Christian for you quick response As i understood after from the index documentation after each update db:optimize function should be called to rebuild the index structure. so i will implement that If i set AUTOOPTIMIZE and UPDINDEX true in local option ".basex " file so it should work ?

Re: [basex-talk] Indexes getting removed after update operation in database

2020-06-02 Thread Christian Grün
Hi Dharmendra, Please check out our documentation [1]; it will give you more insight into how indexes are handled in BaseX. Best, Christian [1] https://docs.basex.org/wiki/Indexes#Updates On Tue, Jun 2, 2020 at 4:55 PM DK Singh wrote: > > Hi, > > I am using Basex version 8.6.6 i am creating

Re: [basex-talk] Eclipse editor support and authentication

2020-06-02 Thread Christian Grün
> Re. The security: If you were providing a web site with sensitive information > stored in BaseX, not CC type stuff wherein a token could be used, would you > trust the security inherit in BaseX? Sorry to ask, this just isn't my area > of expertise. What kind of confidential/sensitive informa

Re: [basex-talk] RESTXQ - java.lang.OutOfMemoryError: Java heap space

2020-06-02 Thread Christian Grün
Hm… Yes, maybe the number of inserts is simply too large for single insert operations. Did you count how many new cases will be created? > into doc("US") Are you inserting into a document or a database? In the latter case, you could replace the function call with db:open. The db:copynode option

[basex-talk] Indexes getting removed after update operation in database

2020-06-02 Thread DK Singh
Hi, I am using Basex version 8.6.6 i am creating full text indexes on database from the GUI, when any update operation is happening on the database all created indexes getting removed. when i use ft module to search anything then error occurs that database "test" has not full text index. I am ex