Uploaded image for project: 'Commons EL'
  1. Commons EL
  2. EL-5

[el] Contention on global cache / parseExpression

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Reopened
    • Major
    • Resolution: Unresolved
    • 1.0
    • 1.1
    • None
    • Operating System: other
      Platform: Other

    • 24286

    Description

      The ExpresssionEvaluatorImpl maintains a static synchronized hashmap as a global
      parser cache. In my tests, this proves to be a contention point in highly
      concurrent web access, even if the cache is already filled:

      "tcpConnection-8080-514" daemon prio=1 tid=0x08214890 nid=0x4e39 waiting for
      monitor entry [bd9ff000..bd9ff908]
      at java.util.Collections$SynchronizedMap.get(Collections.java:1942)

      • waiting to lock <0x45586ef0> (a java.util.Collections$SynchronizedMap)
        at
        org.apache.commons.el.ExpressionEvaluatorImpl.parseExpressionString(ExpressionEvaluatorImpl.java:306)
        ...

      Even pre-parsing the expressions through #parseExpression doesn't help: it
      parses the expression for syntactic correctness and returns an instance of
      JSTLExpression that, however, doesn't contain the parsing result. It is reparsed
      on every evaluation.

      I propose

      • evaluator instance local caches that still need synchronization, but can be
        made thread-local, page-local oder whatever by the calling application / container.
      • to actually maintain the parsing result in JstlExpression

      I would volunteer to develop the respective patches, if desired.

      Attachments

        1. patch-el-cache.txt
          2 kB
          Matthias Ernst
        2. ASF.LICENSE.NOT.GRANTED--patch
          6 kB
          Matthias Ernst

        Activity

          People

            Unassigned Unassigned
            matthias.ernst@coremedia.com Matthias Ernst
            Votes:
            1 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated: