View Single Post
xerxes2's Avatar
Posts: 513 | Thanked: 651 times | Joined on Feb 2011 @ Sweden
#192
So I did some testing on memory usage for Qt5 ...

This is memory usage for hello world QML:

C++: 14mb
Pyotherside: 15.3mb
Pyqt5: 17mb

The results are calculated by starting the app and run "free", close the app and run free again. So yes Pyotherside takes less memory than Pyqt but not much. The C++ and Pyotherside apps were running of this code:
Code:
#include <QGuiApplication>
#include <QQuickView>


int main(int argc, char* argv[])
{
    QGuiApplication *app = new QGuiApplication(argc, argv);
    QQuickView *view = new QQuickView;
    view->setSource(QUrl::fromLocalFile(argv[1]));
    view->show();

    return app->exec();
}
And smaller than that I don't think is possible.
__________________
But the WM7 "horse" has a blood lineage tracing back to donkeys such as WM6.5, 6.1, 6.0, 5.1 that was fully neglected for too many years and Microsoft did sweet F all to maintain it (still running on Pocket IE4/6!!).
 

The Following User Says Thank You to xerxes2 For This Useful Post: