I've just started working with the PHP API for Rackspace Cloud Files. So far so good-- but I am using it as sort of a poor man's memcache, storing key/value pairs of serialized data.

My app attempts to grab the existing cached object by its key ('name' in the API language) using something like this:

$obj = $this->container->get_object($key);

The problem is, if the object doesn't exist, the API throws a fatal error rather than simply returning false. The "right" way to do this by the API would probably be to do a

$objs = $this->container->list_objects();

and then check for my $key value in that list. However, this seems way more time/CPU intensive than just returning false from the get_object request.

Is there a way to do a "search for object" or "check if object exists" in Cloud Files?

Thanks

link|improve this question

80% accept rate
2  
If it throws an error, try catching it. – Marc B Aug 10 '11 at 18:39
@Marc B-- that does work-- I was just looking for info on whether there's a "file exists" type of function I could use rather than try/catch – julio Aug 10 '11 at 18:53
There's not one that I'm aware of, but if there were, it would probably just be a wrapper that does a try/catch anyway. So that's probably still your best bet ;) – Brian Aug 15 '11 at 19:17
feedback

1 Answer

up vote 3 down vote accepted

I sent them a pull request and hope it'll get included.

https://github.com/rackspace/php-cloudfiles/pull/35

My pull-request includes an example, for you it would be similar to this:

$object = new CF_Object($this->container, 'key');
if ($object->exists() === false) {
    echo "The object '{$object->name}' does not exist.";
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.