How to Fix OpenVPN Unsupported Options

Overview If you see this error when trying to connect to a VPN server using OpenVPN Error message: option_error: sorry, unsupported options present in configuration: Removed deprecated options There is a simple fix. Here is how How to fix Connection failed due to unsupported options in OpenVPN Honestly, the error message is vague at best. … Read more

Fix LocalDateTime Serialization with Redis & Spring Boot Cache

Fix LocalDateTime Serialization with Redis

Overview Recently, I added Redis as the cache manager for my web app (https://ukata.io). There is an error regarding JSON LocalDateTime parsing like this: Mind you, I’ve already added the following dependency in my pom.xml file: But I still got that error. I use Spring Boot 3.0 for this project FIY. So, how to fix … Read more

Redis Command CheatSheet

Redis Command CheatSheet

Data Initialization Here is the cheatsheet to initialize different Redis data types: I was able to set the values for different data types. However, when I tried to use GET on a datatypes other than String, I got an error: “(error) WRONGTYPE Operation against a key holding the wrong kind of value”. Key Commands String … Read more