Hello,
Anyone tried Ubuntu 12.04 LTS? I have few questions: 1) How is overall performance of new OS. 2) Is everything fine if we setup OFBiz development environment on it? For example installing Postgres, Mysql, jdk1.6 etc. Thanks in advance! -- Kind Regards Ashish Vijaywargiya HotWax Media - est. 1997 smime.p7s (8K) Download Attachment |
Hi Ashish,
I have been using it since Beta 2. I am not sure about performance as upgrading to newer versions makes my machine slower. I am not sure if it is Ubuntu or age of the machine. Regarding dev environment, I have upgraded the system using auto updates and did not face any problem. Thanks, Raj On Tuesday 01 May 2012 12:44 AM, Ashish Vijaywargiya wrote: > Hello, > > Anyone tried Ubuntu 12.04 LTS? I have few questions: > > 1) How is overall performance of new OS. > > 2) Is everything fine if we setup OFBiz development environment on it? > For example installing Postgres, Mysql, jdk1.6 etc. > > Thanks in advance! > |
In reply to this post by Ashish Vijaywargiya-5
I used 10.04 for 2 years and switched now to 12.04 with unity theme.
In my opinion 12.04 is a little bit slower than 10.04, but this also can be a result of the unity theme - caused by the grafical effects like windows vista / 7. Anyway I do not really like the unity, so maybe I switch back to the "old" look, but I will try it with 12.04 and check the performance. ofbiz, postgresql, pqadmin and eclipse run without any problems on 12.04. regards robert
|
Hi All,
I want to fetch products' details using multiple product ids in where clause so that there should be a single query for all the products to be shown in single page. Similarly I want to fetch multiple products for multiple categories like at home page I am showing all the products of 3 different categories say mostly sold, mostly viewed, recently sold. So my concern is fetching all the data in one go instead of calling same query/service again and again. Please let me know if such services already exist? Thanks, Krishan Babbar ---------------------------------------------------------------------------------------------------------------------------- Disclaimer: This email and any files transmitted with it may contain privileged or confidential information. It is solely for use by the individual for whom it is intended even if addressed incorrectly. If you received this email in error please notify the sender, do not disclose, copy, distribute or take any action in reliance on the contents of this information; and delete it from your system. Any other use of this email is prohibited. Thank you for your compliance. |
Try this:
List productIds = UtilMisc.toList("product1", "product2", etc); List productsList = delegator.findByCondition("Product", new EntityExpr("productId", EntityOperator.IN, productIds), null, null); You can also use findByAnd Skip -----Original Message----- From: [hidden email] [mailto:[hidden email]] Sent: Tuesday, May 01, 2012 5:20 AM To: [hidden email] Subject: Need to fetch records using multiple ids in where clause Hi All, I want to fetch products' details using multiple product ids in where clause so that there should be a single query for all the products to be shown in single page. Similarly I want to fetch multiple products for multiple categories like at home page I am showing all the products of 3 different categories say mostly sold, mostly viewed, recently sold. So my concern is fetching all the data in one go instead of calling same query/service again and again. Please let me know if such services already exist? Thanks, Krishan Babbar ---------------------------------------------------------------------------- ------------------------------------------------ Disclaimer: This email and any files transmitted with it may contain privileged or confidential information. It is solely for use by the individual for whom it is intended even if addressed incorrectly. If you received this email in error please notify the sender, do not disclose, copy, distribute or take any action in reliance on the contents of this information; and delete it from your system. Any other use of this email is prohibited. Thank you for your compliance. |
In reply to this post by Rajbir Saini
Thanks so much Raj for the additional information.
I was expecting one reply from your side on this subject, I hope you are doing well. :-) In next few weeks or so I'll try Ubuntu 12.04 and be back with additional information!!! -- Kind Regards Ashish Vijaywargiya HotWax Media - est. 1997 On Tuesday 01 May 2012 04:45 PM, Rajbir Saini wrote: > Hi Ashish, > > I have been using it since Beta 2. I am not sure about performance as > upgrading to newer versions makes my machine slower. I am not sure if > it is Ubuntu or age of the machine. > > Regarding dev environment, I have upgraded the system using auto > updates and did not face any problem. > > Thanks, > > Raj > > On Tuesday 01 May 2012 12:44 AM, Ashish Vijaywargiya wrote: >> Hello, >> >> Anyone tried Ubuntu 12.04 LTS? I have few questions: >> >> 1) How is overall performance of new OS. >> >> 2) Is everything fine if we setup OFBiz development environment on >> it? For example installing Postgres, Mysql, jdk1.6 etc. >> >> Thanks in advance! >> > smime.p7s (8K) Download Attachment |
In reply to this post by Robert Gan
Thanks so much Robert!!!
-- Kind Regards Ashish Vijaywargiya HotWax Media - est. 1997 On Tuesday 01 May 2012 05:37 PM, Robert G. wrote: > ofbiz, postgresql, pqadmin and eclipse run without any problems on 12.04. > smime.p7s (8K) Download Attachment |
In reply to this post by SkipDever
Thanks Skip,
Krishan Babbar ---------------------------------------------------------------------------------------------------------------------------- Disclaimer: This email and any files transmitted with it may contain privileged or confidential information. It is solely for use by the individual for whom it is intended even if addressed incorrectly. If you received this email in error please notify the sender, do not disclose, copy, distribute or take any action in reliance on the contents of this information; and delete it from your system. Any other use of this email is prohibited. Thank you for your compliance. -----Original Message----- From: Skip Sent: Tuesday, May 01, 2012 9:59 PM To: [hidden email] Subject: RE: Need to fetch records using multiple ids in where clause Try this: List productIds = UtilMisc.toList("product1", "product2", etc); List productsList = delegator.findByCondition("Product", new EntityExpr("productId", EntityOperator.IN, productIds), null, null); You can also use findByAnd Skip -----Original Message----- From: [hidden email] [mailto:[hidden email]] Sent: Tuesday, May 01, 2012 5:20 AM To: [hidden email] Subject: Need to fetch records using multiple ids in where clause Hi All, I want to fetch products' details using multiple product ids in where clause so that there should be a single query for all the products to be shown in single page. Similarly I want to fetch multiple products for multiple categories like at home page I am showing all the products of 3 different categories say mostly sold, mostly viewed, recently sold. So my concern is fetching all the data in one go instead of calling same query/service again and again. Please let me know if such services already exist? Thanks, Krishan Babbar ---------------------------------------------------------------------------- ------------------------------------------------ Disclaimer: This email and any files transmitted with it may contain privileged or confidential information. It is solely for use by the individual for whom it is intended even if addressed incorrectly. If you received this email in error please notify the sender, do not disclose, copy, distribute or take any action in reliance on the contents of this information; and delete it from your system. Any other use of this email is prohibited. Thank you for your compliance. |
In reply to this post by SkipDever
Sharing an experience....
findByCondition - is deprecated and hence not suggested. This might hit performance later. Food for thought -- findByAnd , findList are preferred to findByCondition. Also condition can be made by EntityCondition - A static class of all the condition may be used to be used later by all developers. Dev From: "Skip" <[hidden email]> To: <[hidden email]> Date: 05/01/2012 10:04 PM Subject: RE: Need to fetch records using multiple ids in where clause Try this: List productIds = UtilMisc.toList("product1", "product2", etc); List productsList = delegator.findByCondition("Product", new EntityExpr("productId", EntityOperator.IN, productIds), null, null); You can also use findByAnd Skip -----Original Message----- From: [hidden email] [mailto:[hidden email]] Sent: Tuesday, May 01, 2012 5:20 AM To: [hidden email] Subject: Need to fetch records using multiple ids in where clause Hi All, I want to fetch products' details using multiple product ids in where clause so that there should be a single query for all the products to be shown in single page. Similarly I want to fetch multiple products for multiple categories like at home page I am showing all the products of 3 different categories say mostly sold, mostly viewed, recently sold. So my concern is fetching all the data in one go instead of calling same query/service again and again. Please let me know if such services already exist? Thanks, Krishan Babbar ---------------------------------------------------------------------------- ------------------------------------------------ Disclaimer: This email and any files transmitted with it may contain privileged or confidential information. It is solely for use by the individual for whom it is intended even if addressed incorrectly. If you received this email in error please notify the sender, do not disclose, copy, distribute or take any action in reliance on the contents of this information; and delete it from your system. Any other use of this email is prohibited. Thank you for your compliance. =====-----=====-----===== Notice: The information contained in this e-mail message and/or attachments to it may contain confidential or privileged information. If you are not the intended recipient, any dissemination, use, review, distribution, printing or copying of the information contained in this e-mail message and/or attachments to it are strictly prohibited. If you have received this communication in error, please notify us by reply e-mail or telephone and immediately and permanently delete the message and any attachments. Thank you
Thanks,
Dev Panda |
Great
Thanks, Krishan Babbar ---------------------------------------------------------------------------------------------------------------------------- Disclaimer: This email and any files transmitted with it may contain privileged or confidential information. It is solely for use by the individual for whom it is intended even if addressed incorrectly. If you received this email in error please notify the sender, do not disclose, copy, distribute or take any action in reliance on the contents of this information; and delete it from your system. Any other use of this email is prohibited. Thank you for your compliance. -----Original Message----- From: [hidden email] Sent: Wednesday, May 02, 2012 12:05 PM To: [hidden email] Cc: [hidden email] Subject: RE: Need to fetch records using multiple ids in where clause Sharing an experience.... findByCondition - is deprecated and hence not suggested. This might hit performance later. Food for thought -- findByAnd , findList are preferred to findByCondition. Also condition can be made by EntityCondition - A static class of all the condition may be used to be used later by all developers. Dev From: "Skip" <[hidden email]> To: <[hidden email]> Date: 05/01/2012 10:04 PM Subject: RE: Need to fetch records using multiple ids in where clause Try this: List productIds = UtilMisc.toList("product1", "product2", etc); List productsList = delegator.findByCondition("Product", new EntityExpr("productId", EntityOperator.IN, productIds), null, null); You can also use findByAnd Skip -----Original Message----- From: [hidden email] [mailto:[hidden email]] Sent: Tuesday, May 01, 2012 5:20 AM To: [hidden email] Subject: Need to fetch records using multiple ids in where clause Hi All, I want to fetch products' details using multiple product ids in where clause so that there should be a single query for all the products to be shown in single page. Similarly I want to fetch multiple products for multiple categories like at home page I am showing all the products of 3 different categories say mostly sold, mostly viewed, recently sold. So my concern is fetching all the data in one go instead of calling same query/service again and again. Please let me know if such services already exist? Thanks, Krishan Babbar ---------------------------------------------------------------------------- ------------------------------------------------ Disclaimer: This email and any files transmitted with it may contain privileged or confidential information. It is solely for use by the individual for whom it is intended even if addressed incorrectly. If you received this email in error please notify the sender, do not disclose, copy, distribute or take any action in reliance on the contents of this information; and delete it from your system. Any other use of this email is prohibited. Thank you for your compliance. =====-----=====-----===== Notice: The information contained in this e-mail message and/or attachments to it may contain confidential or privileged information. If you are not the intended recipient, any dissemination, use, review, distribution, printing or copying of the information contained in this e-mail message and/or attachments to it are strictly prohibited. If you have received this communication in error, please notify us by reply e-mail or telephone and immediately and permanently delete the message and any attachments. Thank you |
Free forum by Nabble | Edit this page |