积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(19)Julia(10)C++(9)数据库(8)TiDB(8)云计算&大数据(5)VirtualBox(3)系统运维(2)综合其他(2)人工智能(2)

语言

全部英语(20)中文(繁体)(10)中文(简体)(6)

格式

全部PDF文档 PDF(34)DOC文档 DOC(2)
 
本次搜索耗时 0.024 秒,为您找到相关结果约 36 个.
  • 全部
  • 后端开发
  • Julia
  • C++
  • 数据库
  • TiDB
  • 云计算&大数据
  • VirtualBox
  • 系统运维
  • 综合其他
  • 人工智能
  • 全部
  • 英语
  • 中文(繁体)
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • DOC文档 DOC
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 A Multithreaded, Transaction-Based Locking Strategy for Containers

    A Multithreaded, Transaction-Based Locking Strategy for Containers Bob Steagall CppCon 2020 K E W B C O M P U T I N GCopyright © 2020 Bob Steagall K E W B C O M P U T I N G Overview • Sharing a container timestamp ordering (STO) • Testing the STO-based solution • Summary CppCon 2020 - A Multi-threaded, Transaction-Based Locking Strategy for Containers 2Copyright © 2020 Bob Steagall K E W B C O M P U T I N G Writing multi-threaded applications is easier (?) than ever CppCon 2020 - A Multi-threaded, Transaction-Based Locking Strategy for Containers 3Copyright © 2020 Bob Steagall K E W B C O M P U T I N G
    0 码力 | 142 页 | 474.78 KB | 5 月前
    3
  • pdf文档 Concurrency

    LOCK GUARD EXAMPLE if (transaction.amount < account.balance) { account.balance -= transaction.amount; record(account, transaction); accept_transaction(transaction); } else { account -= overdraft_charge; record(account, overdraft_of(transaction)); notify_user(account, overdraft_message); reject_transaction(transaction); } Needs synchronization https://godbolt.org/z/YhdcjncYoCppCon LOCK GUARD EXAMPLE if (transaction.amount < account.balance) { account.balance -= transaction.amount; record(account, transaction); accept_transaction(transaction); } else { account
    0 码力 | 160 页 | 2.91 MB | 5 月前
    3
  • pdf文档 TiDB 2.1.7

    updates by default, thanks to two auto-retry mechanisms which blindly re-applied updates when a transaction conflicted. TiDB also supports a select ... for update statement which mostly, but not entirely called a timestamp oracle (TSO, for short) to allocate a monotonically increasing se- quence of transaction timestamps. Data is stored in Bigtable, a horizontally scalable key-value store, which offers atomic the state of the row, includ- ing whether that row is locked by a transaction, or a pointer to that row’s current version. A transaction be- gins by acquiring a start timestamp from the TSO. It then acquires
    0 码力 | 9 页 | 141.29 KB | 5 月前
    3
  • pdf文档 CppCon 2021: Persistent Data Structures

    line flushes and memory fences low by persisting only the transaction descriptor: ▶ Contains the information needed to execute a transaction ▶ Leveraged as redo logs verify consistency after a crash and synchronization using a helping scheme in conjunction with CAS ▶ A transaction will help complete another transaction if a conflict is detected ▶ The transaction status is updated from Active to either Committed or Begin Transaction End Transaction Persist Transaction More Operations ? Execute Data Structure Operation Operation Successful? Commit Transaction Abort Transaction Set Transaction Status
    0 码力 | 56 页 | 1.90 MB | 5 月前
    3
  • pdf文档 探讨和实践基于Istio的微服务治理事件监控

    Agent B Agent C Agent Request(Transaction ID) A(application) Trasanctionid(CA SDK support) TOM (who) Create a checklist(action) At 2018-0930(time) 日志输出(Transaction ID) C(application) Trasanctionid(CA checklist(action) At 2018-0930(time) 日志输出 Get the corresponding logs for one time request by transaction ID Request(Transaction ID)Java探针的基本原理 A.class 1 2 3 4 5 8 9 Request Response JVM 6 10 7 Class Loader Cloud Native App POD Agent logfile Proxy Transaction ID Transaction ID Cloud Native App POD Agent logfile Proxy Transaction ID Transaction ID …Commit to Client Success 成就客户卓越Mixer组件功能介绍Mixer的介绍
    0 码力 | 29 页 | 8.37 MB | 5 月前
    3
  • pdf文档 TiDB中文技术文档

    TIMESTAMP TIMESTAMPADD TIMESTAMPDIFF TINYBLOB (R) TINYINT (R) TINYTEXT (R) TO (R) TRAILING (R) TRANSACTION TRIGGER (R) TRIGGERS TRIM TRUE (R) TRUNCATE UNCOMMITTED UNION (R) UNIQUE (R) UNKNOWN UNLOCK (R) (DML) - 151 - 本文档使用 书栈(BookStack.CN) 构建 事务语句 TiDB 支持分布式事务。涉及到事务的语句包括 Autocommit 变量、 START TRANSACTION / BEGIN 、 COMMIT 以及 ROLLBACK 。 语法: 1. SET autocommit = {0 | 1} 通过设置 autocommit 的值为 1,可以将当前 START TRANSACTION; 4. 5. START TRANSACTION WITH CONSISTENT SNAPSHOT; 上述三条语句都是事务开始语句,效果相同。通过事务开始语句可以显式地开始一个新的事务,如果这个时候当前 Session 正在一个事务中间过程中,会将当前事务提交后,开启一个新的事务。 语法: TiDB 事务语句 自动提交 START TRANSACTION, Begin
    0 码力 | 444 页 | 4.89 MB | 5 月前
    3
  • pdf文档 Exceptionally Bad: The Story on the Misuse of Exceptions and How to Do Better

    responsibility goes higher up the chain Right to the top – effectively transaction is wiped Needs local handling to mitigate transaction wiping Pattern : External libraries, modular functionality expresses responsibility goes higher up the chain Right to the top – effectively transaction wiped Needs local handling to mitigate transaction wiping Pattern : External libraries, modular functionality expresses
    0 码力 | 85 页 | 2.32 MB | 5 月前
    3
  • pdf文档 Performance Engineering: Being Friendly to Your Hardware

    Column RD/WR wait wait data • Actual data transfer. • Wider and shorter transaction for DDR4 • Narrower and longer transaction for DDR5Memory 23 ACT Row Column RD/WR wait wait data PRE • Capacitor theoretical limit • Bandwidth vs latencyMemory • DDR architecture – it is only a fraction of bus transaction that is in fact DDR • Row addressing • Column addressing • Generation to generation capacitor
    0 码力 | 111 页 | 2.23 MB | 5 月前
    3
  • pdf文档 PingCAP TiDB&TiKV Introduction OLTP

    使用Multi Raft支持Dynamic Scale ● 支持类 Percolator 分布式事务 ● 提供 MVCC 支持 ○ RocksDB RocksDB Raft KV MVCC Transaction API RPC Store4 Raft groups RPC RPC Client Store1 TiKV Node1 Region 1 Region 3 ... Store2 TiKV region 2 Raft group for region 3 中间件 [0- 10] [10- 20] [20- 30] [30- 40] SQL Layer Transaction API MVCC NewKV NewSQL - 数据库无限水平扩展的完美解决方案 DB Sharding NewSQL | Ti Project 大数据时代,当单机数据 库容量及处理能力达到瓶
    0 码力 | 21 页 | 613.54 KB | 5 月前
    3
  • pdf文档 TiDB and Amazon Aurora

    Wire Protocol heartbeat meta TiDB is not a database middleware Sharding middleware TiDB ACID Transaction Support Mostly Elastic Scaling Complex Query (Join, Sub query, GROUP BY) Failover Manual Auto wire protocol TiDB Server TiKV Server Storage Physical Stack Highly layered TiKV API (gRPC) Transaction MVCC Multi-Raft (gRPC) RocksDB Raw KV API Transactional KV API TiKV Node Store 1 Region 1
    0 码力 | 57 页 | 2.52 MB | 5 月前
    3
共 36 条
  • 1
  • 2
  • 3
  • 4
前往
页
相关搜索词
MultithreadedTransactionBasedLockingStrategyforContainersConcurrencyTiDB2.1CppCon2021PersistentDataStructures探讨实践基于Istio服务治理事件监控中文技术文档ExceptionallyBadTheStoryontheMisuseofExceptionsandHowtoDoBetterPerformanceEngineeringBeingFriendlyYourHardwarePingCAPTiKVIntroductionOLTPAmazonAurora
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩