Explore >> Select a destination


You are here

www.mikeperham.com
| | oldblog.antirez.com
16.0 parsecs away

Travel
| |
| | dzone.com
11.9 parsecs away

Travel
| | Enhance application response times and user experience with the power of AWS Elasticache Redis. Understand the differences between cluster and non-cluster modes
| | github.com
34.6 parsecs away

Travel
| | Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes, Streams, HyperLogLogs, Bitmaps. - redis/redis
| | www.foonathan.net
138.8 parsecs away

Travel
| When C++11 introduced move semantics, it also added two important helper functions: std::move and std::forward. They are essential when you want to manually indicate that you no longer care about an object or need to propagate the value category in generic code. As such, Ive used them countless times in the past. However, they are functions. Plain, old, standard library functions. This is problematic for multiple reasons.