DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Why I Ditched Redis for Cloudflare Durable Objects in My Rate Limiter
  • Simple Sophisticated Object Cache Service Using Azure Redis
  • Scaling Databases With EclipseLink And Redis
  • Stateless JWT Auth Microservice Architecture With Spring Boot 3 and Redis Sentinel

Trending

  • Pragmatica Aether: Let Java Be Java
  • When One MVP Is Really Four Systems: A Better Way to Plan Multi-Role Apps
  • 5 Common Security Pitfalls in Serverless Architectures
  • Why DDoS Protection Is an Architectural Decision for Developers
  1. DZone
  2. Coding
  3. Languages
  4. Saving Objects In Redis And Php

Saving Objects In Redis And Php

By 
Snippets Manager user avatar
Snippets Manager
·
Dec. 07, 11 · Code Snippet
Likes (0)
Comment
Save
Tweet
Share
3.4K Views

Join the DZone community and get the full member experience.

Join For Free
// A fairly generic method to store arrays and also to add them to a pool to reverse lookup their ids based on values that they contain. This method extends my own redis client but will work for the better clients out there such as predis.


class storage extends redis {

  public function save($key, array $object, $timestamp=true){
    $timestamp && $object['timestamp'] = date('Ymdhis');
    $id = $this->incr('id:'.$key);
    
    foreach ($object as $k => $v) {
      $this->sadd(sprintf("%s:%s:%s", $key, $k, $v), $id);
    }

    $key = sprintf("%s:%s", $key, $id);
    $this->hmset($key, $object);
  }
}
Redis (company) Object (computer science)

Opinions expressed by DZone contributors are their own.

Related

  • Why I Ditched Redis for Cloudflare Durable Objects in My Rate Limiter
  • Simple Sophisticated Object Cache Service Using Azure Redis
  • Scaling Databases With EclipseLink And Redis
  • Stateless JWT Auth Microservice Architecture With Spring Boot 3 and Redis Sentinel

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook