Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How long to blob urls served by the app engine remain valid?

I was wondering if anyone knew how long image urls served back from the google app engine blob store remain valid for?

I have been tracking on url that i served an image from the blob store on 1/3/13 and its still there.

I am ask specifically so i can cache the image url instead of attempting to serve it repeatedly. If i did this i would still check if the image is there, but how often would i need to check that

thanks!

like image 600
nemisis enforcer Avatar asked Jan 15 '13 04:01

nemisis enforcer


1 Answers

They remain valid until either you

a. call delete_serving_url, or
b. delete the underling blob.

like image 63
Stuart Langley Avatar answered Sep 28 '22 05:09

Stuart Langley