积分充值
 首页
前端开发
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文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(71)Python(36)Julia(18)数据库(16)TiDB(16)Conda(16)C++(9)PHP(8)云计算&大数据(5)VirtualBox(3)

语言

全部英语(77)中文(繁体)(10)中文(简体)(9)

格式

全部PDF文档 PDF(90)其他文档 其他(4)DOC文档 DOC(2)
 
本次搜索耗时 0.679 秒,为您找到相关结果约 96 个.
  • 全部
  • 后端开发
  • Python
  • Julia
  • 数据库
  • TiDB
  • Conda
  • C++
  • PHP
  • 云计算&大数据
  • 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 v8.3 Documentation

    · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 119 4.1.2 TiDB transaction mechanisms · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 119 4.1.3 The · · · · · · · 456 4 4.8 Transaction · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 462 4.8.1 Transaction overview · · · · · · · · · · · · · · · · · · · · 466 4.8.3 Transaction Restraints· · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 497 4.8.4 Handle Transaction Errors · · · · · · · · · · · · ·
    0 码力 | 6606 页 | 109.48 MB | 9 月前
    3
  • pdf文档 TiDB v8.2 Documentation

    · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 116 4.1.2 TiDB transaction mechanisms · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 116 4.1.3 The · · · · · · · 453 4 4.8 Transaction · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 459 4.8.1 Transaction overview · · · · · · · · · · · · · · · · · · · · 463 4.8.3 Transaction Restraints· · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 494 4.8.4 Handle Transaction Errors · · · · · · · · · · · · ·
    0 码力 | 6549 页 | 108.77 MB | 9 月前
    3
  • pdf文档 TiDB v8.1 Documentation

    · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 116 4.1.2 TiDB transaction mechanisms · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 116 4.1.3 The · · · · · · · 453 4 4.8 Transaction · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 459 4.8.1 Transaction overview · · · · · · · · · · · · · · · · · · · · 463 4.8.3 Transaction Restraints· · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 494 4.8.4 Handle Transaction Errors · · · · · · · · · · · · ·
    0 码力 | 6479 页 | 108.61 MB | 9 月前
    3
  • pdf文档 TiDB v8.5 Documentation

    · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 146 4.1.2 TiDB transaction mechanisms · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 146 4.1.3 The · · · · · · · · · 547 4.9 Transaction · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 549 4.9.1 Transaction overview · · · · · · · · · · · · · · · · · · · · 552 4.9.3 Transaction Restraints· · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 583 4.9.4 Handle Transaction Errors · · · · · · · · · · · · ·
    0 码力 | 6730 页 | 111.36 MB | 9 月前
    3
  • pdf文档 TiDB v8.4 Documentation

    · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 141 4.1.2 TiDB transaction mechanisms · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 141 4.1.3 The · · · · · · · · · 542 4.9 Transaction · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 544 4.9.1 Transaction overview · · · · · · · · · · · · · · · · · · · · 547 4.9.3 Transaction Restraints· · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 578 4.9.4 Handle Transaction Errors · · · · · · · · · · · · ·
    0 码力 | 6705 页 | 110.86 MB | 9 月前
    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文档 Conda 23.7.x Documentation

    specifying only r-essentials, specify r-base=3.5 r-essentials. • Feeling frustrated with “verifying transaction” and also feeling lucky? – Run conda config --set safety_checks disabled. • Getting strange mixtures extras: mirrordenver.fdcservers.net * updates: mirror.tzulo.com Resolving Dependencies --> Running transaction check ---> Package conda.x86_64 0:4.5.11-0 will be installed --> Finished Dependency Resolution =============================================== Installing: conda x86_64 4.5.11-0 conda 73 M Transaction Summary =============================================================================== Install
    0 码力 | 795 页 | 4.91 MB | 7 月前
    3
共 96 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 10
前往
页
相关搜索词
MultithreadedTransactionBasedLockingStrategyforContainersConcurrencyTiDBv8Documentation2.1CppCon2021PersistentDataStructuresConda23.7
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩