/images/avatar.jpg
杂七杂八的,随手记录。

SQLite: Past, Present, and Future

Table of Contents

本文为摘录(或转载),侵删,原文为: attachments/pdf/2/p3535-gaffney.pdf

1 INTRODUCTION

  • SQLite is embedded in the process of the host application

  • Instead of communicating with a database server across process boundaries, applications manage a SQLite database by calling SQLite library functions

  • several characteristics combine to make SQLite useful in a broad range of scenario:

std::initializer_list in C++

本文为摘录(或转载),侵删,原文为: https://www.cppstories.com/2023/initializer_list_improvements/

1 Referencing local array

std::initializer_list 在使用中会转化成为常量对象的匿名局部数组:

1
2
3
4
5
6
std::initializer_list<int> wrong() { // for illustration only!
    return { 1, 2, 3, 4};
}
int main() {
    std::initializer_list<int> x = wrong();
}

The above code is equivalent to the following:

Stream Control Transmission Protocol (SCTP)

本文为摘录(或转载),侵删,原文为: https://www.linuxjournal.com/article/9749

1 SCTP Associations

SCTP 的联合 (association) 类似于 TCP 的连接 (connection) , 但又有不同:

The Design and Implementation of Modern Column-Oriented Database Systems