・
Reviews 4
・
Average rating 4.3
As the title suggests, I thought it would be a simple project that follows the practical Redis usage. The first part was about learning Redis commands, and the part where Redis is actually used was just a PPT, which was really disappointing. The reason I paid for it was the latter.
Hello. Did you happen to check the introductory video before taking the course? The course introduction video didn't mention building a simple project. I'm curious about what made you think that. And this course was intentionally designed not to be dependent on a specific programming language. This is because the most important thing when using Redis is the technology of Redis itself. Nevertheless, because Redis's interface is very intuitive, you can essentially solve the desired part by translating the content covered in the lecture directly into the language you primarily use. For example, if your primary language is Python, the Redis SET command maps directly as follows: >>> import redis >>> r = redis.Redis(host='localhost', port=6379, db=0) >>> r.set('foo', 'bar')