Skip to content

How to improve analytic efficiency? #1773

Discussion options

You must be logged in to vote

Thank you for the explanation, I believe that I do now understand better what you ask for:

  1. You have a long list of ExpressionItems, which is slow to parse in total
  2. So instead, you try to split the list of ExpressionItems into Expressions and then want to parse those in parallel

It's actually an interesting idea although it begs one very important question: how do you split the List of Expression Items?
a) if you know the Expressions beforehand, then yes, I would expect your parallel approach to work
b) if you do not know the Expressions, but depend on parsing the ExpressionList, then this won't work (since JSQLParser parses every element down to the leaves of the AST)

Btw, you can parse E…

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@JosephC666
Comment options

@manticore-projects
Comment options

Answer selected by JosephC666
@JosephC666
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants