Re: [google-appengine] Re: BlobStore Java

2011-03-07 Thread Iván Rodríguez
OK, sure about this ;) ! Then... any appengine guru can answer this? 2011/3/7 Gary Eberhart > Thanks. I love the kitties. I've never had a serving URL break. Who knows > though. I'm depending on it. It would be good for an authority to answer > this questions for us. I look forward to seeing the

Re: [google-appengine] Re: BlobStore Java

2011-03-07 Thread Gary Eberhart
Thanks. I love the kitties. I've never had a serving URL break. Who knows though. I'm depending on it. It would be good for an authority to answer this questions for us. I look forward to seeing the kitty post. :O) 2011/3/7 Iván Rodríguez > Wowww beautiful cat!!! My cat is not at blobstore and I

Re: [google-appengine] Re: BlobStore Java

2011-03-07 Thread Iván Rodríguez
Wowww beautiful cat!!! My cat is not at blobstore and I have my app disabled while I turn it to HR Datastore, because as Ikai says...it is better. I will post my cat later and actualize this post, don´t worry!. My problem is that I am not sure if this url may be or not be a "broken url" at future,

Re: [google-appengine] Re: BlobStore Java

2011-03-07 Thread Gary Eberhart
I think you just save the image serving URL? e.g. http://lh3.ggpht.com/nC8afHp0Wp1VfqTy-wKWL7hn-4y62tp-w24eQwvIg-IvcvJoHMGYcVUBezU1spae2h9Uw4BmvPaX7V3hWaAak8RmUQ=s288 Change the s288 to change the size of the images returned. I probably just don't get your problem.

Re: [google-appengine] Re: BlobStore Java

2011-03-07 Thread Iván Rodríguez
Really?? Nothing happend at future with this url if google image service (aka picassa) do any internal change? This means we can store blobkey as plain String and add an url prefix later? For example: [...] private final String GOOGLE_STATIC_SERVING_URL = "lh4.ggpht.com"; String getUrl (BlobKey

Re: [google-appengine] Re: BlobStore Java

2011-03-07 Thread Gary Eberhart
Just save the serving URL. I is consistent. Let the browser download the image with the URL. 2011/3/7 Iván Rodríguez > And other question about this, is possible to store servingUrl? I see all > serving urls are blobkey related like: > > http://lh6.ggpht.com/BLOBKEYSTRING > > or > > http://lh5.g

[google-appengine] Re: BlobStore Java

2011-03-07 Thread Iván Rodríguez
And other question about this, is possible to store servingUrl? I see all serving urls are blobkey related like: http://lh6.ggpht.com/BLOBKEYSTRING or http://lh5.ggpht.com/BLOBKEYSTRING So that I can store servingUrl and no matter If tomorrow this Image is replaced without changing blobkey. Or