- Repeating single query
- QSqlQuery: 10000ms
- SOCI: 2500ms
- Prepared statement
- QSqlQuery: 7000ms
- SOCI: 750ms(?!)
A blog from a software developer who didn't get any formal training or education at all. :P
Monday, January 16, 2017
QSqlQuery vs. SOCI: inserting 1000 times
Recently I'm using QtWebApp to develop an application, and I did some performance benchmark to select a database library in the backend. I selected QSqlQuery and SOCI as candidates, and tried to insert 10,000 rows at once. The result is as follows:
QSqlQuery vs. SOCI: 1000회 연속 insert
최근 QtWebApp을 기반으로 프로그램을 개발하고 있는 바, backend에서 사용할 DB 라이브러리를 써보려고 성능 테스트 비슷한걸 해봤습니다. 후보로는 QSqlQuery와 SOCI를 선택했고, 연속으로 10,000회 insert를 시도했습니다. 결과는 아래와 같습니다:
- 단일 쿼리 반복
- QSqlQuery: 10000ms
- SOCI: 2500ms
- Prepared statement
- QSqlQuery: 7000ms
- SOCI: 750ms(?!)
Subscribe to:
Posts (Atom)