File tree 8 files changed +92
-24
lines changed
src/main/java/com/genexus/cache/memcached
main/java/com/genexus/cache/redis
test/java/com/genexus/test/cache/redis
8 files changed +92
-24
lines changed Original file line number Diff line number Diff line change 53
53
- name : Test Redis
54
54
run : |
55
55
export EXECUTE_REDIS_TESTS=true
56
- mvn -B -pl java test --file $POM_PATH
56
+ mvn -B -pl gxcache-redis test --file $POM_PATH
57
+
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
+ <modelVersion >4.0.0</modelVersion >
6
+
7
+ <parent >
8
+ <groupId >com.genexus</groupId >
9
+ <artifactId >parent</artifactId >
10
+ <version >${revision}${changelist} </version >
11
+ </parent >
12
+
13
+ <artifactId >gxcache-memcached</artifactId >
14
+ <name >GeneXus Cache Memcached</name >
15
+
16
+ <dependencies >
17
+ <dependency >
18
+ <groupId >${project.groupId} </groupId >
19
+ <artifactId >gxcommon</artifactId >
20
+ <version >${project.version} </version >
21
+ </dependency >
22
+ <dependency >
23
+ <groupId >${project.groupId} </groupId >
24
+ <artifactId >gxclassR</artifactId >
25
+ <version >${project.version} </version >
26
+ </dependency >
27
+ <dependency >
28
+ <groupId >net.spy</groupId >
29
+ <artifactId >spymemcached</artifactId >
30
+ <version >2.12.3</version >
31
+ </dependency >
32
+ </dependencies >
33
+ </project >
Original file line number Diff line number Diff line change 1
- package com .genexus ;
1
+ package com .genexus . cache . memcached ;
2
2
3
3
import java .io .Closeable ;
4
4
import java .io .IOException ;
5
5
import java .util .ArrayList ;
6
6
import java .util .List ;
7
7
import java .util .Map ;
8
+
9
+ import com .genexus .Application ;
10
+ import com .genexus .CommonUtil ;
11
+ import com .genexus .ICacheService2 ;
8
12
import com .genexus .util .GXService ;
9
13
import com .genexus .util .GXServices ;
10
14
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
+ <modelVersion >4.0.0</modelVersion >
6
+
7
+ <parent >
8
+ <groupId >com.genexus</groupId >
9
+ <artifactId >parent</artifactId >
10
+ <version >${revision}${changelist} </version >
11
+ </parent >
12
+
13
+ <artifactId >gxcache-redis</artifactId >
14
+ <name >GeneXus Cache Redis</name >
15
+
16
+ <dependencies >
17
+ <dependency >
18
+ <groupId >${project.groupId} </groupId >
19
+ <artifactId >gxclassR</artifactId >
20
+ <version >${project.version} </version >
21
+ </dependency >
22
+ <dependency >
23
+ <groupId >${project.groupId} </groupId >
24
+ <artifactId >gxcommon</artifactId >
25
+ <version >${project.version} </version >
26
+ </dependency >
27
+ <dependency >
28
+ <groupId >com.fasterxml.jackson.core</groupId >
29
+ <artifactId >jackson-core</artifactId >
30
+ <version >${jackson.version} </version >
31
+ </dependency >
32
+ <dependency >
33
+ <groupId >redis.clients</groupId >
34
+ <artifactId >jedis</artifactId >
35
+ <version >4.3.1</version >
36
+ </dependency >
37
+ </dependencies >
38
+ </project >
File renamed without changes.
Original file line number Diff line number Diff line change 1
- package com .genexus .cache .redis ;
1
+ package com .genexus .test . cache .redis ;
2
2
3
+ import com .genexus .cache .redis .RedisClient ;
3
4
import com .genexus .db .CacheValue ;
4
5
import org .apache .logging .log4j .LogManager ;
5
6
import org .apache .logging .log4j .Logger ;
8
9
import org .junit .Before ;
9
10
import org .junit .Test ;
10
11
import redis .clients .jedis .Jedis ;
11
- import redis .clients .jedis .JedisPool ;
12
12
13
13
import java .net .URISyntaxException ;
14
14
import java .util .concurrent .ThreadLocalRandom ;
Original file line number Diff line number Diff line change 110
110
<artifactId >jackson-databind</artifactId >
111
111
<version >${jackson.version} </version >
112
112
</dependency >
113
- <dependency >
114
- <groupId >net.spy</groupId >
115
- <artifactId >spymemcached</artifactId >
116
- <version >2.10.3</version >
117
- </dependency >
118
113
<dependency >
119
114
<groupId >com.lowagie</groupId >
120
115
<artifactId >itext</artifactId >
130
125
<groupId >com.lowagie</groupId >
131
126
<artifactId >itextasian</artifactId >
132
127
<version >1.5.2</version >
133
- </dependency >
134
- <dependency >
135
- <groupId >redis.clients</groupId >
136
- <artifactId >jedis</artifactId >
137
- <version >2.9.0</version >
138
128
</dependency >
139
129
<dependency >
140
130
<groupId >com.sap.conn.jco</groupId >
Original file line number Diff line number Diff line change 101
101
<module >gxwebsocketjakarta</module >
102
102
<module >gxawsserverless</module >
103
103
<module >androidreports</module >
104
- <module >gxqueue</module >
105
- <module >gxqueueawssqs</module >
106
- <module >gxqueueazure</module >
107
- <module >gxcloudstorage-common</module >
108
- <module >gxcloudstorage-awss3</module >
109
- <module >gxcloudstorage-googlecloudstorage</module >
110
- <module >gxcloudstorage-azureblob</module >
111
- <module >gxcloudstorage-ibmcos</module >
112
- <module >gxcloudstorage-tests</module >
113
- </modules >
104
+ <module >gxqueue</module >
105
+ <module >gxqueueawssqs</module >
106
+ <module >gxqueueazure</module >
107
+ <module >gxcache-redis</module >
108
+ <module >gxcache-memcached</module >
109
+ <module >gxcloudstorage-common</module >
110
+ <module >gxcloudstorage-awss3</module >
111
+ <module >gxcloudstorage-googlecloudstorage</module >
112
+ <module >gxcloudstorage-azureblob</module >
113
+ <module >gxcloudstorage-ibmcos</module >
114
+ <module >gxcloudstorage-tests</module >
115
+ </modules >
114
116
115
117
<dependencies >
116
118
<dependency >
You can’t perform that action at this time.
0 commit comments