Connect to Redis to flush cash
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2020
07:43 AM
06-25-2020
07:43 AM
Connect to Redis to flush cash
I am trying to find a way to connect to Redis and flush the cache.
Do somebody know how to do it ?
Solved! Go to Solution.
2 REPLIES 2
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2020
11:18 PM
06-25-2020
11:18 PM
@fmensah :
Have you able to connect to Redis successfully?
If Yes then you can follow from step 2
if Not then you can follow from Step 1
1. Place the Redis jar(download from here) file under bin/ext folder of soapUI, then restart soapui
2. Write the below groovy script Code:
import redis.clients.jedis.Jedis
Jedis jedis = new Jedis("Host")
jedis.connect()
jedis.flushDB()
3. Run the script
Hope it will resolve your issue
Click "Accept as Solution" if my answer has helped,
Remember to give "Kudos" 🙂 ↓↓↓↓↓
Thanks and Regards,
Himanshu Tayal
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2020
08:08 AM
07-03-2020
08:08 AM
I want to connect to Redis using the host, port, password and ssl connection.
host=host,
port=6380,
password=password,
ssl=True,
Do you know how to convert it into a Groovy script ?
