You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by re...@apache.org on 2020/06/04 07:33:25 UTC

[uima-ruta] branch master-v2 updated (7cdb899 -> 2d60a41)

This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch master-v2
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git.


    from 7cdb899  Merge pull request #7 from apache/NO-JIRA-exclude-metainf
     add a5f32e0  [UIMA-6231] introducing new static cache for reusing Pattern objects in REGEXP and RegExpRule
     add e1a5774  [UIMA-6231] introducing new static cache for reusing Pattern objects in REGEXP and RegExpRule - reimplementation - moved to new package - fixed logic in test -> cleanup
     add a1e635e  [UIMA-6231] introducing new static cache for reusing Pattern objects in REGEXP and RegExpRule
     add 870cc8d  [UIMA-6231] introducing new static cache for reusing Pattern objects in REGEXP and RegExpRule
     new 2d60a41  Merge pull request #9 from apache/UIMA-6231-Reducing-memory-pressure-generated-by-UIMA-Ruta

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ruta-core/pom.xml                                  |   8 +-
 .../apache/uima/ruta/cache/PatternCacheKey.java    |  75 ++++++++++++++
 .../apache/uima/ruta/cache/RutaPatternCache.java   |  97 ++++++++++++++++++
 .../uima/ruta/condition/RegExpCondition.java       |  17 +---
 .../java/org/apache/uima/ruta/rule/RegExpRule.java |   3 +-
 .../uima/ruta/cache/RutaPatternCacheTest.java      | 112 +++++++++++++++++++++
 ruta-ep-engine/pom.xml                             |   8 ++
 7 files changed, 303 insertions(+), 17 deletions(-)
 create mode 100644 ruta-core/src/main/java/org/apache/uima/ruta/cache/PatternCacheKey.java
 create mode 100644 ruta-core/src/main/java/org/apache/uima/ruta/cache/RutaPatternCache.java
 create mode 100644 ruta-core/src/test/java/org/apache/uima/ruta/cache/RutaPatternCacheTest.java


[uima-ruta] 01/01: Merge pull request #9 from apache/UIMA-6231-Reducing-memory-pressure-generated-by-UIMA-Ruta

Posted by re...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch master-v2
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit 2d60a4139f29724ac511731869e4123f224fe459
Merge: 7cdb899 870cc8d
Author: Richard Eckart de Castilho <re...@apache.org>
AuthorDate: Thu Jun 4 09:33:15 2020 +0200

    Merge pull request #9 from apache/UIMA-6231-Reducing-memory-pressure-generated-by-UIMA-Ruta
    
    [UIMA-6231] introducing new static cache for reusing Pattern objects in REGEXP and RegExpRule

 ruta-core/pom.xml                                  |   8 +-
 .../apache/uima/ruta/cache/PatternCacheKey.java    |  75 ++++++++++++++
 .../apache/uima/ruta/cache/RutaPatternCache.java   |  97 ++++++++++++++++++
 .../uima/ruta/condition/RegExpCondition.java       |  17 +---
 .../java/org/apache/uima/ruta/rule/RegExpRule.java |   3 +-
 .../uima/ruta/cache/RutaPatternCacheTest.java      | 112 +++++++++++++++++++++
 ruta-ep-engine/pom.xml                             |   8 ++
 7 files changed, 303 insertions(+), 17 deletions(-)