[web2py] Re: Web2py site/app with several deily accesses

2012-08-02 Thread howesc
my largest project is servicing 2.5 million requests per day.  (API calls 
and website views combined)
 - google app engine (big table)
 - modelless
 - medium use of memcache, slight use of google edge cache


On Wednesday, August 1, 2012 7:13:04 AM UTC-7, viniciusban wrote:

 This question has been asked here from time to time, but always things 
 get up to date. 

 So, do you have some case using web2py to serve several (hundreds of 
 thousands, or millions) page hits a day? 

 What is your app architecture? Model based? Modelless? 
 What database do you use? 

 Tell us something about it. 

 -- 
 Vinicius Assef 


-- 





Re: [web2py] Re: Web2py site/app with several deily accesses

2012-08-02 Thread vinicius...@gmail.com

Could you tell us its url?


On 08/02/2012 01:27 PM, howesc wrote:

my largest project is servicing 2.5 million requests per day.  (API
calls and website views combined)
  - google app engine (big table)
  - modelless
  - medium use of memcache, slight use of google edge cache


On Wednesday, August 1, 2012 7:13:04 AM UTC-7, viniciusban wrote:

This question has been asked here from time to time, but always things
get up to date.

So, do you have some case using web2py to serve several (hundreds of
thousands, or millions) page hits a day?

What is your app architecture? Model based? Modelless?
What database do you use?

Tell us something about it.

--
Vinicius Assef

--





--





Re: [web2py] Re: Web2py site/app with several deily accesses

2012-08-02 Thread howesc
oops.

it's the StarMaker family of products.  see the web site at 
starmakerstudios.com.  search starmaker in the iOS app store to get the app.


On Thursday, August 2, 2012 9:44:42 AM UTC-7, viniciusban wrote:

 Could you tell us its url? 


 On 08/02/2012 01:27 PM, howesc wrote: 
  my largest project is servicing 2.5 million requests per day.  (API 
  calls and website views combined) 
- google app engine (big table) 
- modelless 
- medium use of memcache, slight use of google edge cache 
  
  
  On Wednesday, August 1, 2012 7:13:04 AM UTC-7, viniciusban wrote: 
  
  This question has been asked here from time to time, but always 
 things 
  get up to date. 
  
  So, do you have some case using web2py to serve several (hundreds of 
  thousands, or millions) page hits a day? 
  
  What is your app architecture? Model based? Modelless? 
  What database do you use? 
  
  Tell us something about it. 
  
  -- 
  Vinicius Assef 
  
  -- 
  
  
  


-- 





[web2py] Re: Web2py site/app with several deily accesses

2012-08-02 Thread pbreit
Depends on how many tables you have but there are several things to do 
before re-arranging your models including caching, caching, caching, query 
optimization, code optimization, minimize database access, move static 
assets to CDN, etc.

MySQL or Postgres are fine.

In general, better to grow into that size of a site, not to pre-maturely 
optimize on Day 1 (that's not to say build an unscalable site on purpose; 
just don't paralyze yourself).

--