Log message #1033405

# At Username Text
# Sep 12th 2009, 17:23 renan_saddam ~bin
# Sep 12th 2009, 17:21 BlackIce oh model caching, just use cake's cache?
# Sep 12th 2009, 17:21 unclezoot model caching you mean?
# Sep 12th 2009, 17:20 BlackIce unclezoot: cache/?
# Sep 12th 2009, 17:19 unclezoot now im wondering on the best generic httpdocs folder stucture for view caching an autosuggest :)
# Sep 12th 2009, 17:17 unclezoot basically, there's a helper which calls remysharp's js, which uses async: false so you have to wait for the results to ajaxload before you can enter another letter in the input. this means you have to twiddle your thumbs (on my machine at least) whilst you wait for the server response
# Sep 12th 2009, 17:16 unclezoot try this, http://github.com/josegonzalez/tagging/tree/master, savant forked the code (to make it php4 compatible), looks at section 2.3.b if you have the inclination
# Sep 12th 2009, 17:15 skapism really.realise
# Sep 12th 2009, 17:15 skapism I didn'T really there is a difference between all and first in the ordering naming convention
# Sep 12th 2009, 17:15 skapism AD7six: ignore me, I was using order by and not order
# Sep 12th 2009, 17:15 AD7six unclezoot: ic, I don't see where the ajax request goes
# Sep 12th 2009, 17:14 AD7six skapism: what forced you to do what?
# Sep 12th 2009, 17:13 unclezoot it's a tagging plugin which can perform an ajax update to suggest tags, atm that feature is a bit slow
# Sep 12th 2009, 17:13 skapism I see
# Sep 12th 2009, 17:13 xkunalx hi AD7six
# Sep 12th 2009, 17:13 skapism I tried with going with the condition of Model.id DESC, but that forces me to use find('all') and loop through the records, I thoguht it was possible to do it with find('first')
# Sep 12th 2009, 17:12 AD7six skapism: calling find('list') is a pretty accurate emulation
# Sep 12th 2009, 17:12 unclezoot no, im giving you the background of where ive started from and then where ive found a problem, and so the motivation for asking my question about speeding up ajax requests
# Sep 12th 2009, 17:12 skapism what would be the best way to emulate a find('last')?
# Sep 12th 2009, 17:12 AD7six or perhaps more accurately, it's the exact oposite of what I'm suggesting you do (reduce your lookup controller code to a minimum)
# Sep 12th 2009, 17:11 AD7six unclezoot: I don't see how what you've linked to is related to what you're asking
# Sep 12th 2009, 17:06 unclezoot well it's a plugin (http://www.formation-cakephp.com/259/plugin-tags-multi-modeles), 1 helper, 2 models
# Sep 12th 2009, 17:05 AD7six unclezoot: build? how many model,s and helpers are you using to serve json?
# Sep 12th 2009, 17:04 AD7six it also more or less points out the cost is in your app
# Sep 12th 2009, 17:04 unclezoot how about if i have an empty $uses array, but build it on the fly per action with CRI, same with helpers , and then use view caching?
# Sep 12th 2009, 17:04 AD7six yes it's reasonable
# Sep 12th 2009, 17:03 AD7six anyway; if the model you're querying has associations - use a different model with no associations. use a controller with not components and no helpers - and enable view caching unless you choose the webroot trick. that should get yo ubelow 200ms
# Sep 12th 2009, 17:03 unclezoot is that reasonable?
# Sep 12th 2009, 17:02 unclezoot 92ms for a 17k css file
# Sep 12th 2009, 17:02 AD7six why didn't you just use the favicon/an image/a css/a js file
# Sep 12th 2009, 17:01 unclezoot 58ms for the smallest html file i could make
# Sep 12th 2009, 17:00 AD7six heh it's a property
# Sep 12th 2009, 16:59 AD7six ~tell thun_ about api useTable
# Sep 12th 2009, 16:59 unclezoot good question ill find out
# Sep 12th 2009, 16:59 AD7six unclezoot: what's your response time for any static file in your webroot
# Sep 12th 2009, 16:59 thun_ So im trying to grab some data out of another table on a diff datasource. It's in a table called User. I have a table called User on my site. Can I have a model that has a diff table name then the name of the model?
# Sep 12th 2009, 16:59 unclezoot in some bizarre way, i think it replicates a server under load :P
# Sep 12th 2009, 16:58 unclezoot maybe then it's all the crap i have running at the same time i suppose
# Sep 12th 2009, 16:57 AD7six unclezoot: I doubt your choice of os etc is responsible for still more-than-doubling your response time
# Sep 12th 2009, 16:56 unclezoot well im using wamp on this laptop so i daresay it can be tweaked a hell of lot more
# Sep 12th 2009, 16:56 AD7six unclezoot: some profiling would help find out what. as you kind of pointed out, caching isn't your answer (although it's subsequently help)