📄 cost.txt
字号:
/* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -