Re: Retrieve keys on bucket by timestamp

2014-09-04 Thread tele
Hi Sean, Received. thanks! :tele On Thu, 4 Sep 2014 08:44:14 -0500 Sean Cribbs wrote: > Hi tele, > > Yes, a secondary index is the most reasonable way to accomplish this. > Here's an example using the Python client: > > now = time.gmtime() > myobj.add_index('modified_int', now) > myobj.store

Re: Retrieve keys on bucket by timestamp

2014-09-04 Thread Alex De la rosa
damn... i got excited i missed the first line "now = time.gmtime()"... forget my stupid question... lol Thanks, Alex On Thu, Sep 4, 2014 at 4:10 PM, Alex De la rosa wrote: > This is really useful! > > So we can use "now" as a constant to get a current timestamp? > > Thanks! > Alex > > > On Thu

Re: Retrieve keys on bucket by timestamp

2014-09-04 Thread Alex De la rosa
This is really useful! So we can use "now" as a constant to get a current timestamp? Thanks! Alex On Thu, Sep 4, 2014 at 3:44 PM, Sean Cribbs wrote: > Hi tele, > > Yes, a secondary index is the most reasonable way to accomplish this. > Here's an example using the Python client: > > now = time

Re: Retrieve keys on bucket by timestamp

2014-09-04 Thread Sean Cribbs
Hi tele, Yes, a secondary index is the most reasonable way to accomplish this. Here's an example using the Python client: now = time.gmtime() myobj.add_index('modified_int', now) myobj.store() bucket.get_index('modified_int', now-3600, now+3600) Hope that helps. On Wed, Sep 3, 2014 at 9:09 PM,

Retrieve keys on bucket by timestamp

2014-09-03 Thread tele
Hi All, Is there any way i can retrieve from a bucket the keys that last change N minutes ago for example. If possible cis there a way to do it with riak-python-client? Or the only way is to add a timestamp index in the bucket and update in case of changes, so that i will be able to query that in