amrihuang Posted July 31, 2011 Posted July 31, 2011 Web/ExtJS/SenchaTouch framework for Delphi, Reference for everyone interested in http://www.raudus.com/blog/ Some ideas we can understand and add in unigui Quote
eric Posted July 31, 2011 Posted July 31, 2011 please let us know exactly. raudus is a competitor of unigui? or an add-on or complement ? thanks for repy eruc Quote
patmap Posted July 31, 2011 Posted July 31, 2011 Hi, I download and test it! Good futures: ( It is my opinion ) 1) many flexible components 2) Easy use SSL. 3) Upgrade to Ext v4.0 4) Mobile suported Bad futures: ( It is my opinion ) 1) Very slow in loading ! 2) I did not find Javascript Events ! 3) I cant develop Desktop Application ! 4) No ExtPascal source for add any custom future ! 5) So very slow in ajax requests ! I prefer uniGUI more than raudus actually ! All this is my opinion Best Regards Quote
Administrators Farshad Mohajeri Posted July 31, 2011 Administrators Posted July 31, 2011 please let us know exactly. raudus is a competitor of unigui? or an add-on or complement ? thanks for repy eruc You can consider it as a competitor! Quote
Administrators Farshad Mohajeri Posted July 31, 2011 Administrators Posted July 31, 2011 You can consider it as a competitor! I tested Raudus once when it was version 0.7.1. Today I tried to test it again. I didn't have time to test it throughly, but I found out that there is something weird about Raudus. Its session handling model is not clear to me. If I run Sleep(5000) in one of the sessions it seems that all other sessions are blocked too! Does Raudus handle sessions using a multi-threaded model? Quote
amrihuang Posted August 1, 2011 Author Posted August 1, 2011 You can consider it as a competitor! I also prefer uniGUI more than raudus! this only for reference. Quote
ldb68 Posted August 1, 2011 Posted August 1, 2011 I also prefer uniGUI more than raudus! this only for reference. I agree. Unigui is more professional. Radus has more gadget but I think is only a question of time. When Farshad has finished the core library more component will be added making UniGUI the best Delphi Ajax WEB framework! Quote
dionel1969 Posted August 1, 2011 Posted August 1, 2011 I test Raudus before and I prefer UniGUI 10 times more than it. I don't know now, may be it is better than that time I tested it. But it is very good to see it to get the good things. Quote
thecrgrt Posted August 1, 2011 Posted August 1, 2011 I love some Raudus core enhancement, but for overall UniGUI is better. For the UniGUI roadmap that are being finished, UniGUI is the best powerfull framework. Quote
JasonReid Posted August 1, 2011 Posted August 1, 2011 The thing I didn't like about raudus was the designer I found it a bit frustrating, The thing I did like was D7 support. Quote
patmap Posted August 1, 2011 Posted August 1, 2011 The thing I didn't like about raudus was the designer I found it a bit frustrating, The thing I did like was D7 support. But it is not Wonderful ! future. If i have D7. "I have no other choice" I say! At this time i upgrade my Delphi ! Best Regards Quote
Guest Arpan Posted March 5, 2012 Posted March 5, 2012 After using Raudus it seems that it is not practical for large scale of applications. uniGUI architecture is better. According to Raudus documentation and I have also sampled, it serializes all client request into single main thread. However it process client request and response generation part in multi-threaded enviornment. But main thread issue is quite important as it directly impact the response time if one action is taking more time in the main thread, others will keep waiting. Quote
Administrators Farshad Mohajeri Posted March 5, 2012 Administrators Posted March 5, 2012 After using Raudus it seems that it is not practical for large scale of applications. uniGUI architecture is better. According to Raudus documentation and I have also sampled, it serializes all client request into single main thread. However it process client request and response generation part in multi-threaded enviornment. But main thread issue is quite important as it directly impact the response time if one action is taking more time in the main thread, others will keep waiting. Another problem with Raudus is that Form instances are kept in global variables. Consider you have Form1 and you call Show method: Form1.Show Two different sessions can't call above code in different threads simultaneously because Form1 is a global variable and can only point to a single instance of Form1 which belongs to active session. Quote
Marlon Nardi Posted March 5, 2012 Posted March 5, 2012 My first contact was Raudus, like him a lot ... But I had a problem, open a topic in the forum and have never been answered, so I migrated to UniGui. a great advantage that has over the Raudus UniGui, is that it generates. OS (ie it runs on Linux, and UniGui not run ...). Regarding performance, the UniGui is much faster than the Raudus. I have two equal applications, one developed in Raudus UniGui and another in the process Unigui AJAX almost twice as fast the Raudus. both have their strengths and weaknesses in minhão opinion. Att, Marlon Quote
ldb68 Posted March 8, 2012 Posted March 8, 2012 As mentioned several times Raudus generates a virtually single-user application that makes no sense as a web application. UniGUI need only some speed optimization (extjs4) to be perfect. Quote
Guest Arpan Posted March 27, 2012 Posted March 27, 2012 Another problem with Raudus is that Form instances are kept in global variables. Consider you have Form1 and you call Show method: Form1.Show Two different sessions can't call above code in different threads simultaneously because Form1 is a global variable and can only point to a single instance of Form1 which belongs to active session. Thanks for sharing that info. One more question, Is there any Object Modal of uniGUI's web request/response model? I mean any schematic representation of how uniGUI handles requests, process it, and sends response. That will help me to analyze the impacts to port my existing Intraweb application to uniGUI. Quote
Administrators Farshad Mohajeri Posted March 28, 2012 Administrators Posted March 28, 2012 Thanks for sharing that info. One more question, Is there any Object Modal of uniGUI's web request/response model? I mean any schematic representation of how uniGUI handles requests, process it, and sends response. That will help me to analyze the impacts to port my existing Intraweb application to uniGUI. It is very similar to way Indy handle HTTP requests. We have ARequest: TIdHTTPRequestInfo and AResponse:TIdHTTPResponseInfo Objects Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.