Re: [basex-talk] Way to React To Updates Using XQuery?

2015-04-16 Thread Eliot Kimber
I will track the conversation. In thinking about my requirements more I realized that it probably makes sense to build my indexes and cached data structures on demand. At the time a query is made I can determine if the index or cache I need A) already exists and B) is older than the timestamp(s)

[basex-talk] Is -L command-line option still supported?

2015-04-16 Thread Amanda Galtman
Hi, The page http://docs.basex.org/wiki/Command-Line_Options lists an option -L. However, it doesn't seem to work in version 8 and the -h output no longer mentions it. Was the -L option removed, perhaps because of changes in the serialization in version 8? This isn't holding up my work. I

Re: [basex-talk] Basex xquery import module classpath lookup

2015-04-16 Thread Karel Hovorka
Hey, I looked at the code and it turns out, that ModuleLoader#addImport is not being called at all, because condition in QueryParser on line 755: if(mi.paths.isEmpty()) { returns false. From what I saw, I think change should be around line 775: finalIO io =sc.io(string(path)); What do

[basex-talk] Released: BaseX 8.1.1. Upcoming: Finger trees

2015-04-16 Thread Christian Grün
Hi all, BaseX 8.1.1 has just been released [1]. It mostly contains minor bug fixes, all of them uncritical. Since recently, our XQuery arrays are based on a Finger tree implementation [2]. This fancy data structure provides much better performance for insert and delete operations. With BaseX

Re: [basex-talk] Is -L command-line option still supported?

2015-04-16 Thread Amanda Galtman
Thanks! By the way, I really like the serialization improvements. Regards, Amanda -Original Message- From: Christian Grün [mailto:christian.gr...@gmail.com] Sent: Thursday, April 16, 2015 1:55 PM To: Amanda Galtman Cc: basex-talk@mailman.uni-konstanz.de Subject: Re: [basex-talk] Is