xsl-list
[Top] [All Lists]

Re: [xsl] improving performance in creating ids

2019-04-23 09:28:37
Hi Martin,

Thanks for your quick reply. the node identity comparison helped quite a bit, although I am still around a minute for a full book of ids. I am not sure how xsl:number would help here, and what kind of performance win it would give over count(). I tried something with a nested transformation, but what should I feed it?

    <xsl:number select="*[last()]"/>
works (given a set of preceding nodes) but it is slightly slower than a count() in the xquery. Maybe I should be using xsl:number differently?

however, your suggestion of nesting transformations also opens the door to using generate-id() in the xquery realm, with a nested transformation, thereby sidestepping the problem that eXist returns something different for generate-id() from Saxon (also in reply to  Dave Pawson).

I will see where that gets me.

tx
Pieter


On 23/04/2019 14:19, Martin Honnen martin(_dot_)honnen(_at_)gmx(_dot_)de wrote:
On 23.04.2019 14:07, Pieter Lamers pieter(_dot_)lamers(_at_)benjamins(_dot_)nl 
wrote:
Hi All,

I need generated-ids on elements in a BITS file that have @rids, so I
can link back to them. I cannot use generate-id(), because I need it to
produce the same id in both the xquery (eXist) context and in the XSL
(saxon) contect.

I have created a function that will generate a human readable id based
on the id of the nearest ancestor/@id and then element-name + sequence
number. It produces the output that I like, but at the cost of a poor
performance (when run on a whole book) . now with the preceding/ancestor
juggling that I do there might be a better way than mine, so my question
is if there is a better way to tackle this problem.

My function:

declare function local:get-id-in-doc ( $target as element() ) as xs:string
{
   let $current-element as xs:string := local-name($target)
   let $ancestor-with-id as element()? := $target/ancestor::*[@id][1]
   let $prefix as xs:string? := $ancestor-with-id/@id/string()

   let $count :=
     if($prefix) then
       (: case 1: there is an ancestor with an @id :)
       count($target/preceding::*[local-name() eq
$current-element][ancestor::* = $ancestor-with-id]) + 1

That general value comparison

  ancestor::* = $ancestor-with-id

looks odd, shouldn't that be

  ancestor::*[. is $ancestor-with-id]

? I would expect node identity comparison and not value comparison.

Whether that improves performance and then also on two different
implementations is something I can't tell without testing.



2. Is there an alternative way of generating ids (possibly having less
human-readable values) that would work in both the xquery and xslt realm?

It looks like a job for XSLT's xsl:number and I wonder whether your
database xquery processor doesn't provide a way to simply run an XSLT
transformation.


--
Pieter Lamers
John Benjamins Publishing Company
Postal Address: P.O. Box 36224, 1020 ME AMSTERDAM, The Netherlands
Visiting Address: Klaprozenweg 75G, 1033 NN AMSTERDAM, The Netherlands
Warehouse: Kelvinstraat 11-13, 1446 TK PURMEREND, The Netherlands
tel: +31 20 630 4747
web: www.benjamins.com
--~----------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
EasyUnsubscribe: http://lists.mulberrytech.com/unsub/xsl-list/1167547
or by email: xsl-list-unsub(_at_)lists(_dot_)mulberrytech(_dot_)com
--~--

<Prev in Thread] Current Thread [Next in Thread>