Redis Basic Commands

Redis Basic Commands

avatar Teja P 25 April 2025
Basic Commands To enter Redis execute redis-cli in cmd To add data set key value e.g. set name Teja To get data get key e.g. get name To Delete data del key e.g. del name To check if key exists EXISTS key e.g. exists name To get all keys KEYS pattern …
Continue reading
Importing a certificate into JDK

Importing a certificate into JDK

avatar Teja P 2 October 2024
Keytool is located in JDK root directore/bin Goto C:\Program Files\Java\jdk1.8.0_202\jre\lib\security Password for keytool is changeit keytool -list -v -keystore cacerts > c:\Temp\certs.txt If Java home is not set you can directly goto JDK …
Continue reading
Java 22 Features

Java 22 Features

avatar Teja P 19 May 2024
Unamed variables Now with Java 22 we an crate unname varibles. Earlier versions of java has few rules for variables like it should start with a letter, numbers not allowed as vairable names etc. In java 22 you can use _ as a variable name, but you …
Continue reading