While there is likely better performance using Java over bsh, you would likely be better to identify what actions specifically are taking longer than they should. Your better targets for optimization are playing with the cache settings and making sure you're entity queries are using cached entities whenever possible and using view entities instead of multiple trips to the database. In addition possibly setting up more complex SQL Views in your database and modeling them as if they were entities, ensuring your database is configured optimally and looking at where denormalization of your data model may be beneficial in your usage. I think you'll find overall most of your performance hits come from round trips to the database as opposed to the actual "language" your write your scripts in.
BTW Phani, I have just completed getting a shopping cart to Google Checkout, I'd be interested if you had completed any of the other order fullfillment integrations with Google Checkout. Thanks! -Chris --- "G.Venkata Phanindra" <[EMAIL PROTECTED]> wrote: > Hi all. > I am currently working on Optimization of load time for > website > running on Ofbiz... i have a doubt by moving the code from bsh to > Java class > can we expect improvement in load time... as bsh is a pure > interpreted > language where as java is a compiled one ... i have gone thru the > documentation given at > http://beanshell.org/intro.html.<http://beanshell.org/intro.html> > > regards, > G.Venkata Phanindra > Mob:: 9849852989 >
