I want to know about performance both javabacked webscript and webscript
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-06-2013 10:37 PM
Hi my name is Cho Ho Young.
I want to know about performance both javabacked webscript and webscript.
If you know data and site.
Please Tell me.
I want to know about performance both javabacked webscript and webscript.
If you know data and site.
Please Tell me.
Labels:
- Labels:
-
Archive
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-07-2013 02:44 AM
This is a very vague question. What exactly do you want to know? If you're asking whether or not the same functionality will run faster in a Java backed WebScript or a JavaScript controller webscript then I can't give a definitive answer. Whilst both approaches will go through quite a common code path (e.g. for matching the WebScript, initial set up, template rendering, etc the paths only diverge at the controller stage. I think it very much depends on what you're trying to do and the complexity of the controller, but for most cases I doubt there is much in it. The advantages of using a Java backed WebScript are more to do with having access to the entire Spring application context.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-07-2013 07:59 AM
Yes I doubt there is much in it. Of course it depends upon what your web script is doing. You have finer control in a Java backed web script.
I suspect that the overheads of calling your web script and the operations that your web script does (for example calling a the database) will have far more impact than how the controller is implemented.
I suspect that the overheads of calling your web script and the operations that your web script does (for example calling a the database) will have far more impact than how the controller is implemented.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-14-2013 01:07 AM
Thank you very much.
