cost.txt

来自「LiteSQL is a C++ library that integrates」· 文本 代码 · 共 33 行

TXT
33
字号
/* LiteSQL - Documentation - Cost of Using LiteSQL *  * By Tero Laitinen  *  * See LICENSE for copyright information. *//* \file cost.txt    Manual *//** \page cost Cost of Using LiteSQL\section memoryoverhead Memory OverheadExtra variables in each Persistent object instance:- bool modified - flag in each field- bool oldID - flag (used to track id - changes)- bool inDatabase - flag- Database* - pointer\section performanceoverhead Performance Overhead- one INSERT-SQL statement is required per inherited Persistent-class (deep class inheritance hierarchies cost)- selection of objects needs joins \section codesizeoverhead Code Size OverheadAs demonstrated in \ref implementation, code generator(litesql-gen) generates a lot of code. In addition to that, a part of that codeuses templates which will produce even more code. This is rarely a problem but worth to note when memory is tight.*/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?