Re: [google-appengine] Re: Using GAE as external storage

2010-06-07 Thread Alon Carmel
is the data textual files? images? why not use blobstore service to store
the files using a proprietary api and write a proprietary api to download
them?
its not supposed to be an issue or am i missing the point?

-
Cheers,
public static function AlonCarmel() {
//Contact me
var email = 'a...@aloncarmel.me';
var twitter = '@aloncarmel';
var web = 'http://aloncarmel.me';
var phone = '+972-54-4860380';
}

* If you received an unsolicited email from by mistake that wasn't of your
matter please delete immediately. All E-mail sent from Alon Carmel is
copyrighted to Alon Carmel 2008. Any details revealed in e-mails sent by
Alon Carmel are owned by the Author only. Any attempt to duplicate or
imitate any of the Content is prohibited under copyright law 2008.



On Mon, Jun 7, 2010 at 2:32 PM, Maaartin-1  wrote:

> I'm afraid, this won't work. My problem is quite exactly as the one
> described in
> http://groups.google.com/group/gs-discussion/msg/dd3bae779fecd633?hl=en
>
> On 10-06-04 23:05, ctran wrote:
> > Google Storage for Developers or use S3 is much more suitable for your
> > purpose.
> >
> > On Jun 3, 1:18 pm, Maaartin  wrote:
> >
> >> I'm very new to GAE. I'm thinking about using GAE for storing huge
> >> quantities of data, sent and retrieved by a client. What I mean looks
> >> more like a remote file system then like a web app. Do I have to use
> >> https for the communication or is there something better?
> >>
> >> How can I store it most efficiently? The vast majority of my data
> >> belong to a single table looking like
> >> CREATE TABLE MyBlobs (id BINARY(32), content BLOB, PRIMARY KEY (id))
> >> where the contents are a couple of kilobytes long, the ids are random-
> >> looking unrelated binary strings, and all queries look like
> >> INSERT INTO MyBlobs VALUES (id1, content1), (id2, content2), (id3,
> >> content3), 
> >> or
> >> DELETE FROM MyBlobs WHERE id IN (id1, id2, id3, )
> >> or
> >> SELECT * FROM MyBlobs WHERE id IN (id1, id2, id3, )
> >> There will be no updates and no range searches nor alike.
> >>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to google-appeng...@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Re: Using GAE as external storage

2010-06-07 Thread Maaartin-1
I'm afraid, this won't work. My problem is quite exactly as the one
described in
http://groups.google.com/group/gs-discussion/msg/dd3bae779fecd633?hl=en

On 10-06-04 23:05, ctran wrote:
> Google Storage for Developers or use S3 is much more suitable for your
> purpose.
>
> On Jun 3, 1:18 pm, Maaartin  wrote:
>   
>> I'm very new to GAE. I'm thinking about using GAE for storing huge
>> quantities of data, sent and retrieved by a client. What I mean looks
>> more like a remote file system then like a web app. Do I have to use
>> https for the communication or is there something better?
>>
>> How can I store it most efficiently? The vast majority of my data
>> belong to a single table looking like
>> CREATE TABLE MyBlobs (id BINARY(32), content BLOB, PRIMARY KEY (id))
>> where the contents are a couple of kilobytes long, the ids are random-
>> looking unrelated binary strings, and all queries look like
>> INSERT INTO MyBlobs VALUES (id1, content1), (id2, content2), (id3,
>> content3), 
>> or
>> DELETE FROM MyBlobs WHERE id IN (id1, id2, id3, )
>> or
>> SELECT * FROM MyBlobs WHERE id IN (id1, id2, id3, )
>> There will be no updates and no range searches nor alike.
>> 

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Using GAE as external storage

2010-06-04 Thread ctran
Google Storage for Developers or use S3 is much more suitable for your
purpose.

On Jun 3, 1:18 pm, Maaartin  wrote:
> I'm very new to GAE. I'm thinking about using GAE for storing huge
> quantities of data, sent and retrieved by a client. What I mean looks
> more like a remote file system then like a web app. Do I have to use
> https for the communication or is there something better?
>
> How can I store it most efficiently? The vast majority of my data
> belong to a single table looking like
> CREATE TABLE MyBlobs (id BINARY(32), content BLOB, PRIMARY KEY (id))
> where the contents are a couple of kilobytes long, the ids are random-
> looking unrelated binary strings, and all queries look like
> INSERT INTO MyBlobs VALUES (id1, content1), (id2, content2), (id3,
> content3), 
> or
> DELETE FROM MyBlobs WHERE id IN (id1, id2, id3, )
> or
> SELECT * FROM MyBlobs WHERE id IN (id1, id2, id3, )
> There will be no updates and no range searches nor alike.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.