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

无数据

分类

全部后端开发(58)Python(18)Julia(18)C++(15)数据库(8)TiDB(8)云计算&大数据(7)Rust(7)VirtualBox(6)Tornado(2)

语言

全部英语(53)中文(繁体)(10)中文(简体)(4)西班牙语(1)日语(1)韩语(1)中文(简体)(1)

格式

全部PDF文档 PDF(72)其他文档 其他(1)
 
本次搜索耗时 0.260 秒,为您找到相关结果约 73 个.
  • 全部
  • 后端开发
  • Python
  • Julia
  • C++
  • 数据库
  • TiDB
  • 云计算&大数据
  • Rust
  • VirtualBox
  • Tornado
  • 全部
  • 英语
  • 中文(繁体)
  • 中文(简体)
  • 西班牙语
  • 日语
  • 韩语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Multi Producer, Multi Consumer, Lock Free, Atomic Queue

    Latency Fat Tail - Pie ChartProducer 2 11 Queue Producer N Consumer 1 Consumer 2 Consumer M time tin tout Queue - Message and time flow Producer 1Lockfree, MPMC Queue - Connecting Application Components Capacity: Bounded / dynamic & memory allocation ● Serialization: Strict global order or relaxed per producer order ● API: single item / multiple items, atomicity-ready or not ● Message size: fixed / dynamic unsigned P{2}; std::atomic prod_sum{0}; std::atomic cons_sum{0}; auto producer = [&]() { for (unsigned x = 0; x < N; ++x) { while (!q.push(x))
    0 码力 | 54 页 | 886.12 KB | 6 月前
    3
  • pdf文档 Single Producer Single Consumer Lock-free FIFO From the Ground Up

    net/home/lock-free-algorithms/queues/unbounded-spsc-queue https://www.dpdk.org/ 3● Single producer: one producer (aka writer) thread ● Single consumer: one consumer (aka reader) thread ● Lock-free: it fixed-size buffer as if it were connected end-to-end. The oldest entry is processed first. 4 Single Producer Single Consumer Lock-Free Wait-Free Fifo5 Read message from network Handle message Write
    0 码力 | 51 页 | 546.30 KB | 6 月前
    3
  • pdf文档 Data Is All You Need for Fusion

    R_len, len_x)( fern::Interval (y, C.C_start, C.C_start + C.C_len, len_y)( fern::Compute( fern::Producer( C (x, y, len x, len y) ), fern::Consumer({ A ( x, 0, A.R len, len y), fern::Consumer( B ( + out.x_len, l fern::Interval (y, out.y_start, out.y_start + out.y_len, l fern::Compute( fern::Producer(Input A Input B Output C Matrix Multiplication 59 fern::Interval (x, C.R_start, C.R_start + C R_len, len_x)( fern::Interval (y, C.C_start, C.C_start + C.C_len, len_y)( fern::Compute( fern::Producer( C (x, y, len x, len y) ), fern::Consumer({ A ( x, 0, A.R len, len y), fern::Consumer( B (
    0 码力 | 151 页 | 9.90 MB | 6 月前
    3
  • pdf文档 The Roles of Symmetry And Orthogonality In Design

    from heap and which retains ownership (caller receives handle or light reference) Source…Sink: Producer…Consumer: Sink Symmetry Restored! Manager type provides options for: • No leaked instances • robustly applied because we know what it solves and how to defend against edge cases) Symmetry: Producer ➔ Consumer: Work items are arbitrarily produced; and each is consumed exactly once • Benefits: robustly applied because we know what it solves and how to defend against edge cases) Symmetry: Producer ➔ Consumer: Work items are arbitrarily produced; and each is consumed exactly once • Benefits:
    0 码力 | 151 页 | 3.20 MB | 6 月前
    3
  • pdf文档 Apache Pulsar,云原生时代的消息平台 - 翟佳

    streamnative.io 统⼀消费模型 • Exclusive • Failover • Shared • Key-Shared streamnative.io 统⼀消费模型 — 订阅 Producer Topic 1 2 3 4 5 6 7 Subscription2 Consumer 1 2 3 4 5 6 7 readEntries Ack/N-Ack Broke BookKeepe 1 Topic (T1) Topic (T1) Topic (T1) Subscription (S1) Subscription (S1) Producer (P1) Consumer (C1) Producer (P3) Producer (P2) Consumer (C2) Beijing Shanghai Guangzhou streamnative.io ⼤数据处理中统⼀的存储的抽象 ⼤数据处理中统⼀的存储的抽象 — Segmented Stream Segment0 Segment1 Segment2 Segment3 Producer Consumer Time Segment 5 Segment4 Segment Readers Segmented
 Stream streamnative.io 基础决定上层:Cloud-Native • State / Scale
    0 码力 | 39 页 | 12.71 MB | 6 月前
    0.03
  • pdf文档 Tornado 6.5 Documentation

    tornado.queues module (and the very similar Queue classes in asyncio) implements an asynchronous producer / consumer pattern for coroutines, analogous to the pattern implemented for threads by the Python allow_ipv6: bool | None = None, client_key: str | None = None, client_cert: str | None = None, body_producer: Callable[[Callable[[bytes], None]], Future[None]] | None = None, expect_100_continue: bool = False HTTP request body as a string (byte or unicode; if unicode the utf-8 encoding will be used) • body_producer (collections.abc.Callable) – Callable used for lazy/asynchronous request bodies. It is called with
    0 码力 | 272 页 | 1.12 MB | 3 月前
    3
  • pdf文档 Back to Basics: Concurrency

    help solve the readers/writers problemOther popular concurrency patterns ● Producer Consumer pattern ○ Pattern in which ‘producer’ threads generate data ■ (Usually adding to some queue) ○ Consumer threads threads then consume any data from the queue, and process it. ○ https://en.wikipedia.org/wiki/Producer%E2%80%93consumer_problem ● Barrier ○ Allow a fixed number of threads to enter a critical section com/wp/semaphores/ ○ Useful puzzles to reason about common concurrency patterns (reader/writer, producer/consumer, etc.) ● The ‘comet book’ https://pages.cs.wisc.edu/~remzi/OSTEP/ ○ (Free/donation based)
    0 码力 | 141 页 | 6.02 MB | 6 月前
    3
  • epub文档 Tornado 6.5 Documentation

    asyncio [https://docs.python.org/3/library/asyncio.html#module-asyncio]) implements an asynchronous producer / consumer pattern for coroutines, analogous to the pattern implemented for threads by the Python org/3/library/stdtypes.html#str] | None [https://docs.python.org/3/library/constants.html#None] = None, body_producer: Callable [https://docs.python.org/3/library/typing.html#typing.Callable][[Callable [https://docs HTTP request body as a string (byte or unicode; if unicode the utf-8 encoding will be used) body_producer (collections.abc.Callable [https://docs.python.org/3/library/collections.abc.html#collections.abc
    0 码力 | 437 页 | 405.14 KB | 3 月前
    3
  • pdf文档 Back to Basics: Concurrency

    is raised.mutex + condition_variable ● Whenever you have a “producer” and a “consumer”... ○ ...where the consumer must wait for the producer... ○ ...and production and consumption happen over and over writes, to avoid UB. ○ Maybe use a reader-writer lock (std::shared_mutex) for perf. ● Remember: Producer/consumer? Use mutex + condition_variable. ● Best of all, though: Avoid sharing mutable data between
    0 码力 | 58 页 | 333.56 KB | 6 月前
    3
  • pdf文档 julia 1.10.10

    or coroutines: Julia Tasks allow suspending and resuming computations for I/O, event handling, producer-consumer processes, and similar patterns. Tasks can synchronize through operations like wait and example is the producer-consumer problem, where one complex procedure is generating values and another complex procedure is consuming them. The consumer cannot simply call a producer function to get get a value, because the producer may have more values to generate and so might not yet be ready to return. With tasks, the producer and consumer can both run as long as they need to, passing values back
    0 码力 | 1692 页 | 6.34 MB | 3 月前
    3
共 73 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 8
前往
页
相关搜索词
MultiProducerConsumerLockFreeAtomicQueueSinglefreeFIFOFromtheGroundUpDataIsAllYouNeedforFusionTheRolesofSymmetryAndOrthogonalityInDesignApachePulsarTornado6.5DocumentationBacktoBasicsConcurrencyjulia1.1010
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩