Redis HGET in PHP (Detailed Guide w/ Code Examples)
Use Case(s)
The HGET
command in Redis is commonly used when you need to retrieve a specific field from a hash stored in the database. In PHP this can be particularly useful when storing and retrieving associative arrays or complex data structures.
Code Examples
Let's assume we have a user profile stored as a hash in Redis. The user has fields like name
, email
, and age
.
Here's how you would use HGET
with the PHPRedis extension to get the name
:
$redis = new Redis();
$redis->connect('localhost', 6379);
$name = $redis->hGet('user:1', 'name');
echo $name; // Outputs the name of the user
In this example, user:1
is the key for our hash, and name
is the field we want to retrieve. If the field exists, its value will be returned, otherwise NULL will be returned.
Best Practices
- To improve performance, consider using the
hMGet
function if you need to retrieve multiple fields at once instead of callinghGet
multiple times. - Always handle the possibility of NULL being returned, for instance, when the hash or the field doesn't exist.
Common Mistakes
- Forgetting that Redis is case sensitive, so 'Name' and 'name' would be considered two different fields.
- Assuming that the
hGet
function will return an error or exception if the field does not exist. It actually returns NULL.
FAQs
Q: Can I use hGet
with non-string values?
A: Yes, hGet
can retrieve any data type stored in a hash, but it will be returned as a string. If you've stored a serialized object or array, you'll need to unserialize it after retrieval.
Q: What happens if the hash or the field doesn't exist?
A: The hGet
command returns NULL if either the hash or the field does not exist.
Was this content helpful?
Help us improve by giving us your feedback.
Similar Code Examples
Free System Design on AWS E-Book
Download this early release of O'Reilly's latest cloud infrastructure e-book: System Design on AWS.

Switch & save up to 80%
Dragonfly is fully compatible with the Redis ecosystem and requires no code changes to implement. Instantly experience up to a 25X boost in performance and 80% reduction in cost