With that said, how much of a strain would it put on the DB if I
continue to do things the way I am now. Should I look into a plugin?
Whether you serve directly or through a plugin just depends on the
performance of your implementation.
What language is your code written in? The plugin is important if
you're writing in a possible less performance language and the plugin
can bypass that and be really fast.
> --
> You received this message because you are subscribed to the Google Groups "mongodb-user" group.
> To post to this group, send email to mongod...@googlegroups.com.
> To unsubscribe from this group, send email to mongodb-user...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/mongodb-user?hl=en.
>
>
Yea, the title was misleading, sorry about that. :-)
On Feb 27, 11:09 pm, Eliot Horowitz <eliothorow...@gmail.com> wrote:
> Well first, I wouldn't say its GridFS vs. CDN, GridFS often makes
> sense with a CDN in front of it for example.
> businessinsider.com stores/manipulates/manages images in GridFS and
> serves them directly, but has a CDN in front of it as well.
>
> Whether you serve directly or through a plugin just depends on the
> performance of your implementation.
> What language is your code written in? The plugin is important if
> you're writing in a possible less performance language and the plugin
> can bypass that and be really fast.
>
So a browser will request cdn.foo.com - which goes to the CDN. If the
CDN has the image, it'll serve it.
If not - it'll make a request to www.foo.com and cache it.
See: http://www.us.cdnetworks.com/service/web_application_acceleration.php
S3 + CloudFront is storage + CDN.
a lot of others like CDNetworks, Akamai etc. support using an origin
http server for cache misses. GridFS + a web/app server make a good
origin.
On Sat, Feb 27, 2010 at 11:16 PM, sdotsen <samna...@gmail.com> wrote:
On Feb 28, 1:08 pm, Dwight Merriman <dwi...@10gen.com> wrote:
> i think amazon's cdn uses S3 as the "origin"
>
> a lot of others like CDNetworks, Akamai etc. support using an origin
> http server for cache misses. GridFS + a web/app server make a good
> origin.
>