linux系统下PostgreSQL的使用

文章目录

  • 前言
  • 一、安装pgsql数据库
  • 二、安装c和c++驱动
  • 三、使用
    • 1、头文件
    • 2、源文件
    • 3、main文件
    • 4、编译


前言

最近工作中使用到了pgsql,主要是使用其c++驱动完成数据库创建及增删改查等操作…

一、安装pgsql数据库

使用命令如下:

sudo apt-get install postgresql

安装完成,使用如下命令,确认数据库版本:

psql --version

二、安装c和c++驱动

使用如下命令安装c驱动:

sudo apt-get install libpq-dev

使用如下命令安装c++驱动:

sudo tar -zxvf libpqxx-6.4.8.tar.gz
cd libpqxx-6.4.8/
sudo ./configure --disable-documentation
sudo make
sudo make install

三、使用

1、头文件

头文件如下:

#ifndef POSTGREOPERATOR_H
#define POSTGREOPERATOR_H#include <iostream>
#include <string>
#include <map>
#include <thread>#include "pqxx/pqxx"using namespace std;
using namespace pqxx;struct TableField {string name;string type;
};class PostgreOperator
{
private:PostgreOperator() {}PostgreOperator(const PostgreOperator&) = delete;PostgreOperator& operator=(const PostgreOperator&) = delete;~PostgreOperator();public:static PostgreOperator& getInstance();bool connect();void disConnect();bool insertOneRow(const string& tableName,const vector<string>& rowData);bool updateOneRow(const string& tableName, const string& conditionColumnName,const string& conditionValue, const vector<string>& columnNames,const vector<string>& newValues);void selectRows(const string& tableName, vector<vector<string>>& resultRows,const vector<string>& selectedColumns,const string& conditionColumnName = "",const string& conditionValue = "");bool deleteRows(const string& tableName, const string& conditionColumnName = "",const string& conditionValue = "");private:static void initTable();static bool createdb(const string& dbname,const string& user,const string& password);static bool createInitTable();static bool addTable(const string& tableName,const vector<TableField>& fields);static bool deleteTable(const string& tableName);static bool addFieldToTable(const string& tableName, const vector<TableField>& fields);static bool removeFieldFromTable(const string& tableName, const vector<string>& fieldNames);private:static string m_user;static string m_passwd;static string m_dbName;static bool m_initTable;static PostgreOperator *m_instance;static map<string, vector<TableField>> m_tables;static connection* m_pConnection;static thread_local unique_ptr<connection> thread_local_connection_;
};#endif // POSTGREOPERATOR_H

2、源文件

源文件如下:

#include "postgreoperator.h"string      PostgreOperator::m_dbName;
string      PostgreOperator::m_user;
string      PostgreOperator::m_passwd;
bool        PostgreOperator::m_initTable = false;
connection* PostgreOperator::m_pConnection = nullptr;map<string, vector<TableField>> PostgreOperator::m_tables;
PostgreOperator* PostgreOperator::m_instance = nullptr;
thread_local unique_ptr<connection> PostgreOperator::thread_local_connection_ = nullptr;PostgreOperator& PostgreOperator::getInstance()
{if (!m_instance) {m_instance = new PostgreOperator;if(!m_initTable){initTable();createdb("disposaldb","tami","tami");createInitTable();}}return *m_instance;
}PostgreOperator::~PostgreOperator()
{if(m_pConnection){m_pConnection->disconnect();delete m_pConnection;m_pConnection = nullptr;}
}bool PostgreOperator::createdb(const string& dbname,const string& user,const string& password)
{m_dbName = dbname;m_user = user;m_passwd = password;string connectStr = "dbname=postgres user=postgres password=postgres ""hostaddr=127.0.0.1 port=5432";bool ret = false;try {connection *connection = new pqxx::connection(connectStr);if(connection->is_open()){nontransaction txn(*connection);string quotedDb = "'" + dbname + "'";if(user.compare("postgres") == 0 && password.compare("postgres") == 0){//cout<<"hello111 "<<"user ="<<user<<"password ="<<password<<endl;string checkDb = "SELECT 1 FROM pg_database WHERE datname = " + quotedDb;pqxx::result result_check = txn.exec(checkDb);if(result_check.empty()){string sql = "CREATE DATABASE " + dbname + " WITH OWNER= postgres"+" ENCODING='UTF-8' ;";txn.exec(sql);cout << "create database "+ dbname +" with user=postgres successed!" << endl;}else{cout << "database "+ dbname + " already exists!" <<endl;}}else{//cout<<"hello222 "<<"user ="<<user<<" password ="<<password<<endl;string quotedUser = "'" + user + "'";string checkUser = "SELECT 1 FROM pg_user WHERE usename = " + quotedUser;pqxx::result result_checkUser = txn.exec(checkUser);if (result_checkUser.empty()) {string sql = "CREATE USER " + user + " WITH PASSWORD '" + password + "'";txn.exec(sql);}else{cout << "user "+ user + " already exists!" <<endl;}std::string checkDb = "SELECT 1 FROM pg_database WHERE datname = " + quotedDb;pqxx::result result_check = txn.exec(checkDb);if(result_check.empty()){string dbSql = "CREATE DATABASE " + dbname + " WITH OWNER="+user+" ENCODING='UTF-8';";txn.exec(dbSql);cout << "create database "+ dbname +" with user="+user+" successed!" << endl;}else{cout << "database "+ dbname + " already exists!" <<endl;}}ret = true;}else{cout<<"open database " + dbname +" with user=postgres failed!"<<endl;connection->disconnect();return ret;}delete connection;connection = nullptr;}catch (const std::exception &e) {cerr<<e.what()<<endl;}return ret;
}void PostgreOperator::initTable()
{m_tables.clear();m_tables = {{"p_frequency", {{"msgId", "bigint"},{"sn", "bigint"},{"startFrequency", "bigint"},{"endFrequency", "bigint"},{"rbw", "double precision"},{"dataType", "smallint"},{"number", "integer"},}},{"d_frequency", {{"msgId", "bigint"},{"sn", "bigint"},{"times", "timestamp without time zone"},{"timems", "timestamp without time zone"},{"data", "smallint[]"},}},{"p_timedomain", {{"msgId", "bigint"},{"sn", "bigint"},{"centerFrequency", "bigint"},{"gain", "smallint"},{"timestamp", "timestamp without time zone"},{"frameTotal", "integer"},{"frameNumber", "integer"},{"number", "integer"},}},{"d_timedomain", {{"msgId", "bigint"},{"sn", "bigint"},{"times", "timestamp without time zone"},{"timems", "timestamp without time zone"},{"data", "integer[]"},}},};
}bool PostgreOperator::createInitTable()
{string connectStr = "dbname="+m_dbName+" user="+m_user+" password="+m_passwd+" hostaddr=127.0.0.1 port=5432";bool ret = false;try {m_pConnection = new pqxx::connection(connectStr);if(m_pConnection->is_open()){nontransaction txn(*m_pConnection);for (const auto& table : m_tables) {const std::string tableName = table.first;const std::vector<TableField>& fields = table.second;string quotedtable = "'" + tableName + "'";string checktable = "SELECT 1 FROM information_schema.tables WHERE table_name = " + quotedtable;//cout<<"checktable ="<<checktable<<endl;pqxx::result result_check = txn.exec(checktable);if (result_check.empty()) {string quotedTableName = "\"" + tableName + "\"";string createTableQuery = "CREATE TABLE " + quotedTableName + " (";string idStr = "id";string msgIdStr = "msgId";string snStr = "sn";createTableQuery += "\"" + idStr + "\" ";createTableQuery += " BIGSERIAL, ";for (size_t i = 0; i < fields.size(); i++) {if (fields[i].name == msgIdStr || fields[i].name == snStr) {createTableQuery += "\"" + fields[i].name + "\" " + " " + fields[i].type;createTableQuery += " NOT NULL";} else {createTableQuery += "\"" + fields[i].name + "\" " + " " + fields[i].type;}if (i < fields.size() - 1) {createTableQuery += ", ";}}createTableQuery += ", PRIMARY KEY (\"" + idStr + "\")";createTableQuery += ")";//cout<<"createTableQuery ="<<createTableQuery<<endl;txn.exec(createTableQuery);cout << "create table " + tableName + " succeeded!" << endl;} else {cout << "table " + tableName + " already exists!" << endl;}}ret = true;}} catch (const std::exception& e) {cerr << e.what() << endl;}return ret;
}bool PostgreOperator::connect()
{if (!thread_local_connection_) {std::string connectStr = "dbname=" + m_dbName + " user=" + m_user + " password=" + m_passwd+ " hostaddr=127.0.0.1 port=5432";try {thread_local_connection_.reset(new pqxx::connection(connectStr));if (thread_local_connection_->is_open()) {cout << "Connected to dbname=" << m_dbName << " with user=" << m_user << " succeeded!" << endl;return true;} else {cout << "Failed to connect to dbname=" << m_dbName << " with user=" << m_user << endl;return false;}} catch (const std::exception& e) {std::cerr << "Connection failed: " << e.what() << std::endl;return false;}}return true;
}void PostgreOperator::disConnect()
{if (thread_local_connection_) {thread_local_connection_->disconnect();thread_local_connection_.reset();}
}bool PostgreOperator::addFieldToTable(const string& tableName, const vector<TableField>& fields)
{bool ret = false;try {work txn(*m_pConnection);string quotedtable = "'" + tableName + "'";string checktable = "SELECT 1 FROM information_schema.tables WHERE table_name = " + quotedtable;pqxx::result result_check = txn.exec(checktable);if (!result_check.empty()) {for(const auto& field : fields){string columnName = "'" + field.name + "'";string sql = "SELECT column_name FROM information_schema.columns WHERE table_name = '" + tableName + "' AND column_name = " +columnName;//cout<<"select sql ="<<sql<<endl;pqxx::result result = txn.exec(sql);if(result.empty()){string sql = "ALTER TABLE "+ tableName+" ADD COLUMN ";sql += "\"" + field.name + "\" " + " " + field.type;//cout<<"alter add sql ="<<sql<<endl;txn.exec(sql);cout << "addFieldToTable successfully." << endl;ret = true;}else{cout<<"column "+field.name+" of "+tableName+" already exists!"<<endl;}}}else{cout << "table " + tableName + " does not exist!" << endl;}txn.commit();} catch (const std::exception& e) {cerr << e.what() << endl;}return ret;
}bool PostgreOperator::removeFieldFromTable(const string& tableName, const vector<string>& fieldNames)
{bool ret = false;try {work txn(*m_pConnection);string quotedtable = "'" + tableName + "'";string checktable = "SELECT 1 FROM information_schema.tables WHERE table_name = " + quotedtable;pqxx::result result_check = txn.exec(checktable);if (!result_check.empty()) {for(const auto& field : fieldNames){string columnName = "'" + field + "'";string sql = "SELECT column_name FROM information_schema.columns WHERE table_name = '" + tableName + "' AND column_name = " +columnName;//cout<<"select sql ="<<sql<<endl;pqxx::result result = txn.exec(sql);if(!result.empty()){string sql = "ALTER TABLE "+ tableName+" DROP COLUMN ";sql += "\"" + field + "\" " + " ";//cout<<"alter drop sql ="<<sql<<endl;txn.exec(sql);cout << "removeFieldFromTable successfully." << endl;ret = true;}else{cout<<"column "+field+" of "+tableName+" does not exists!"<<endl;}}}else{cout << "table " + tableName + " does not exist!" << endl;}txn.commit();} catch (const std::exception& e) {cerr << e.what() << endl;}return ret;
}bool PostgreOperator::addTable(const string& tableName, const vector<TableField>& fields)
{bool ret = false;work txn(*m_pConnection);string quotedtable = "'" + tableName + "'";string checktable = "SELECT 1 FROM information_schema.tables WHERE table_name = " + quotedtable;//cout<<"checktable ="<<checktable<<endl;pqxx::result result_check = txn.exec(checktable);if (result_check.empty()) {string quotedTableName = "\"" + tableName + "\"";string createTableQuery = "CREATE TABLE " + quotedTableName + " (";string idStr = "id";string msgIdStr = "msgId";string snStr = "sn";createTableQuery += "\"" + idStr + "\" ";createTableQuery += " BIGSERIAL, ";createTableQuery += "\"" + msgIdStr + "\" ";createTableQuery += " bigint NOT NULL, ";createTableQuery += "\"" + snStr + "\" ";createTableQuery += " bigint NOT NULL, ";if(!fields.empty()){for (size_t i = 0; i < fields.size(); i++) {createTableQuery += "\"" + fields[i].name + "\" " + " " + fields[i].type;if (i < fields.size() - 1) {createTableQuery += ", ";}}createTableQuery += ", PRIMARY KEY (\"" + idStr + "\")";}else{createTableQuery += " PRIMARY KEY (\"" + idStr + "\")";}createTableQuery += ")";txn.exec(createTableQuery);txn.commit();//cout<<"createTableQuery ="<<createTableQuery<<endl;cout << "create table " + tableName + " succeeded!" << endl;m_tables[tableName] = fields;//        for (const auto& table : m_tables) {
//            const string tableName = table.first;
//            cout<<"tablename ="<<tableName<<endl;//            const vector<TableField>& fields = table.second;
//            for(const auto& field : fields){
//                cout<<"name="<<field.name<<"type ="<<field.type;
//            }
//            cout<<endl;
//        }ret = true;} else {cout << "table " + tableName + " already exists!" << endl;}return ret;
}bool PostgreOperator::deleteTable(const string& tableName)
{bool ret = false;try {string sql = "DROP TABLE IF EXISTS " + tableName;pqxx::work txn(*m_pConnection);txn.exec(sql);if(!m_tables.empty()){auto it = m_tables.find(tableName);if (it != m_tables.end()) {m_tables.erase(it);//cout << "Table '" << tableName << "' deleted from m_tables successfully." << endl;ret = true;} else {cout << "Table '" << tableName << "' not found from m_tables." << endl;}}txn.commit();} catch (const std::exception& e) {cerr << e.what() << endl;}return ret;
}bool PostgreOperator::insertOneRow(const string& tableName,const vector<string>& rowData)
{bool ret = false;pqxx::work txn(*thread_local_connection_);try {std::string sql = "INSERT INTO " + tableName + " (";for (const auto& table : m_tables) {const std::string tableNameStr = table.first;const std::vector<TableField>& fields = table.second;if(tableNameStr == tableName){for (size_t i = 0; i < fields.size(); i++) {sql += "\"" + fields[i].name + "\" ";if (i != fields.size() - 1) {sql += ",";}}}}sql += ") VALUES (";for (size_t i = 0; i < rowData.size(); i++) {sql += "'" + rowData[i] + "'";if (i != rowData.size() - 1) {sql += ",";}}sql += ")";//cout<<"insert sql ="<<sql<<endl;txn.exec(sql);txn.commit();ret = true;} catch (const std::exception &e) {cerr<<e.what()<<endl;txn.abort();}return ret;
}bool PostgreOperator::updateOneRow(const string& tableName, const string& conditionColumnName,const string& conditionValue, const vector<string>& columnNames,const vector<string>& newValues)
{bool ret = false;try {pqxx::work txn(*thread_local_connection_);std::string sql = "UPDATE " + tableName + " SET ";for (size_t i = 0; i < columnNames.size(); i++) {string columnName = "\"" + columnNames[i] + "\" ";sql += columnName + " = '" + newValues[i] + "'";if (i != columnNames.size() - 1) {sql += ",";}}string conditionName = "\"" + conditionColumnName + "\" ";sql += " WHERE " + conditionName + " = '" + conditionValue + "'";txn.exec(sql);txn.commit();cout << "Data updated successfully." << endl;ret = true;} catch (const std::exception &e) {cerr << e.what() << endl;}return ret;
}void PostgreOperator::selectRows(const string& tableName, vector<vector<string>>& resultRows, const vector<string>& selectedColumns,const string& conditionColumnName,const string& conditionValue)
{try {pqxx::work txn(*thread_local_connection_);string sql;// = "SELECT * FROM " + tableName;if (!selectedColumns.empty()) {sql = "SELECT ";for (size_t i = 0; i < selectedColumns.size(); ++i) {sql += "\"" + selectedColumns[i] + "\"";if (i < selectedColumns.size() - 1)sql += ",";}sql += " FROM " + tableName;} else {sql = "SELECT * FROM " + tableName;}if(!conditionColumnName.empty() && !conditionValue.empty()) {string conditionName = "\"" + conditionColumnName + "\" ";sql += " WHERE " + conditionName + " = '" + conditionValue + "'";}pqxx::result result = txn.exec(sql);for (const auto& row : result) {vector<string> record;for (const auto& field : row) {//cout << field.name() << ": " << field.c_str() << "     ";record.push_back(field.c_str());}resultRows.push_back(record);//cout << endl;}txn.commit();cout << "Data select successfully." << endl;} catch (const std::exception &e) {cerr << e.what() << endl;}
}bool PostgreOperator::deleteRows(const string& tableName, const string& conditionColumnName,const string& conditionValue)
{bool ret = false;pqxx::work txn(*thread_local_connection_);try {string sql = "DELETE FROM " + tableName;if(!conditionColumnName.empty() && !conditionValue.empty()) {string conditionName = "\"" + conditionColumnName + "\" ";sql += " WHERE " + conditionName + " = '" + conditionValue + "'";}cout<<"deleterows sql = "<<sql<<endl;txn.exec(sql);txn.commit();cout << "Data delete successfully." << endl;ret = true;} catch (const std::exception &e) {cerr << e.what() << endl;txn.abort();}return ret;
}

3、main文件

#include <chrono>
#include <iostream>
#include <thread>#include "postgreoperator.h"void insertfun(int id,PostgreOperator &operatorInstance) {if (!operatorInstance.connect()) {std::cerr << "Thread " << id << " failed to connect to the database." << std::endl;return;}string tableName = "p_frequency";for(int i = 0;i<500;i++){vector<string> data = {"12345", "10086", "0", "2000000", "0.1", "1", "10"};operatorInstance.insertOneRow(tableName, data);}for(int i = 500;i<1000;i++){vector<string> data = {"67890", "10086", "0", "2000000", "0.1", "1", "10"};operatorInstance.insertOneRow(tableName, data);}
}void deletefun(int id,PostgreOperator &operatorInstance)
{if (!operatorInstance.connect()) {std::cerr << "Thread " << id << " failed to connect to the database." << std::endl;return;}string tableName = "p_frequency";string conditionColumnName = "msgId";string conditionValue = "12345";operatorInstance.deleteRows(tableName, conditionColumnName, conditionValue);
}int main(int argc, char *argv[])
{PostgreOperator& operatorInstance = PostgreOperator::getInstance();// 创建并启动多个线程std::vector<std::thread> threads;for (int i = 0; i < 5; ++i) {threads.emplace_back(insertfun, i,std::ref(operatorInstance));}// 等待所有线程完成for (auto& thread : threads) {thread.join();}#if 0std::thread t1(deletefun, 5, std::ref(operatorInstance));t1.join();#endifreturn 1;
}

4、编译

命令如下:

g++ -pthread --std=c++11 -o demo.out main.cpp postgreoperator.cpp -lpqxx -lpq

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/53603.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

CCF编程能力等级认证GESP—C++3级—20240907

CCF编程能力等级认证GESP—C3级—20240907 单选题&#xff08;每题 2 分&#xff0c;共 30 分&#xff09;判断题&#xff08;每题 2 分&#xff0c;共 20 分&#xff09;编程题 (每题 25 分&#xff0c;共 50 分)平衡序列回文拼接 单选题&#xff08;每题 2 分&#xff0c;共 …

回收玻璃减薄中的氢氟酸

回收玻璃减薄中的氢氟酸是一个重要的环保和资源再利用环节。在玻璃减薄过程中&#xff0c;氢氟酸作为主要的化学蚀刻剂&#xff0c;与玻璃基板表面的二氧化硅等成分发生反应&#xff0c;实现玻璃的减薄。然而&#xff0c;随着反应的进行&#xff0c;氢氟酸的浓度会逐渐降低&…

MyQql性能诊断与实践

获取更多免费资料&#xff0c;见下图

专项练习-数据库SQL-177题(下)

※食用指南&#xff1a;文章内容为牛客网《专项练习-数据库SQL》177道选择题&#xff0c;重点笔记&#xff0c;用于重复思考错题&#xff0c;加深印象 练习传送门&#xff1a;专项练习-数据库SQL-177题 目录&#xff1a; 1、维护参照完整性约束的策略 2、数据库事务的特性&a…

证书学习(四)X.509数字证书整理

目录 一、X.509证书 介绍1.1 什么是 X.509证书?1.2 什么是 X.509标准?1.3 什么是 PKI?二、X.509证书 工作原理2.1 PKI 的基础——加密算法2.2 PKI 证书编码三、X.509证书 结构3.1 证书字段3.2 证书扩展背景: 我们在日常的开发过程中,经常会遇到各种各样的电子证书文件,其…

微信小程序跳转到另一个微信小程序

引用&#xff1a;http://www.xmdeal.com/mobanjiaocheng/254.html 第一种方法&#xff1a; wx.navigateToMiniProgram 官方文档&#xff1a;https://developers.weixin.qq.com/miniprogram/dev/api/navigate/wx.navigateToMiniProgram.html wx.navigateToMiniProgram({appId…

新电脑Win11系统想要降级为Win10怎么操作?

前言 现在的电脑大部分都是Windows 11系统&#xff0c;组装机还好一些&#xff0c;如果想要使用Windows 10&#xff0c;只需要在安装系统的时候选择Windows 10镜像即可。 但是对于新笔记本、厂商的成品机、一体机来说&#xff0c;只要是全新的电脑&#xff0c;基本上都是Wind…

快速入门游戏领域,开发游戏需要哪些技术?

在这个充满创意和技术的时代&#xff0c;游戏行业成为众多创新人才追求梦想的热土。对于准备踏入这个充满挑战与机遇的领域的新人来说&#xff0c;了解游戏开发流程是至关重要的。 游戏市场蓬勃发展&#xff0c;游戏行业未来行情可观&#xff0c;在这个充满创意和技术的时代&a…

8. GIS数据分析师岗位职责、技术要求和常见面试题

本系列文章目录&#xff1a; 1. GIS开发工程师岗位职责、技术要求和常见面试题 2. GIS数据工程师岗位职责、技术要求和常见面试题 3. GIS后端工程师岗位职责、技术要求和常见面试题 4. GIS前端工程师岗位职责、技术要求和常见面试题 5. GIS工程师岗位职责、技术要求和常见面试…

论文阅读清单

目录 三维重建 视觉语言模型 三维重建 [2408.15235v1] Learning-based Multi-View Stereo: A Survey (arxiv.org) 视觉语言模型 表征 [2407.20229] Improving 2D Feature Representations by 3D-Aware Fine-Tuning (arxiv.org)

vue3 前端实现pdf打印预览 printjs

在utils建print.ts文件 interface PrintFunction {extendOptions: Function;getStyle: Function;setDomHeight: Function;toPrint: Function; }const Print function (dom, options?: object): PrintFunction {options options || {};// ts-expect-errorif (!(this instanc…

电脑技巧:如何在Win11电脑上调整设置,让屏幕更加护眼?

目录 一、调整屏幕亮度 二、启用夜间模式 三、调整色彩设置 四、使用第三方护眼软件 五、保持良好的用眼习惯 总结 随着长时间使用电脑的人越来越多,护眼问题也变得越来越重要。Win11作为更新的操作系统,提供了更多的设置选项来帮助我们保护眼睛。本文将详细介绍如何在…

清华计算几何--凸Polygon的相交问题

凸Polygon和相交定义 本节只讨论凸Polygon的问题&#xff0c;不涉及凹Polygon. 相交包含了边相交和完全包含。 凸Polygon相交的两个问题 Detection(检测) 判断两个凸Polygon是否相交&#xff0c;至于相交部分是什么不关心. Construction(构造) 求出两个凸Polygon具体相交…

AI基础 L9 Local Search II 局部搜索

Local Beam search 对于当前的所有k个状态&#xff0c;生成它们的所有可能后继状态。 检查生成的后继状态中是否有任何状态是解决方案。 如果所有后继状态都不是解决方案&#xff0c;则从所有后继状态中选择k个最佳状态。 当达到预设的迭代次数或满足某个终止条件时&#x…

Linux:归档及压缩

tar命令 • tar 集成备份工具 – -c&#xff1a;创建归档 – -x&#xff1a;释放归档 – -f&#xff1a;指定归档文件名称,必须在所有选项的最后 – -z、-j、-J&#xff1a;调用 .gz、.bz2、.xz 格式工具进行处理 – -t&#xff1a;显示归档中的文件清单 – -C&#xff1a;指定…

Linux系统性能调优技巧

Linux系统性能调优技巧 1. **CPU 调优**1.1. 使用 CPU 亲和力 (CPU Affinity)1.2. 调整 CPU 频率调节器 2. **内存调优**2.1. 优化 Swappiness2.2. 清理缓存 3. **I/O 调优**3.1. 调整 I/O 调度器3.2. 提升文件系统性能 4. **网络调优**4.1. 调整 TCP 参数4.2. 调整连接跟踪表大…

MES的“尽头”是什么?

01 MES的发展历程 要了解MES首先需要知道其发展历程。制造执行系统&#xff08;MES&#xff09;是随着制造业的发展逐步演变和成熟起来的。以下是MES发展的几个主要阶段&#xff1a; 第一阶段&#xff1a;数据收集与报告&#xff08;1980年代 - 1990年代&#xff09; 制造业…

[苍穹外卖]-05Redis快速入门

Redis入门 Redis是一个基于内存的key-value结构数据库 基于内存存储, 读写性能高适合存储热点数据(热点商品,咨询,新闻)企业应用广泛中文官网: Redis中文网英文网: https://rsdis.io 下载安装: Redis安装包分为Windows版本和Linux版本, Redis的windows版属于绿色软件, 解压后…

python之异步任务

在 Python 中&#xff0c;异步任务通常通过使用库如 Celery 来实现。Celery 是一个简单、灵活且可靠的分布式系统&#xff0c;用于处理大量消息&#xff0c;同时提供操作控制。 在 Celery 中&#xff0c;delay 和 apply_async 是两种常用的方法来调度异步任务。 delay 方法 …

OCR技术视角:智能文档管理中的票据自动化识别与处理

在数字化转型的浪潮中&#xff0c;企业对于高效、自动化的文档管理需求日益增长。票据作为企业运营中不可或缺的部分&#xff0c;其识别与管理的智能化成为了提升工作效率的关键。本文将深入探讨智能文档系统中票据识别功能的原理、技术优势以及在不同行业中的应用实践&#xf…