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

无数据

分类

全部后端开发(610)Java(279)Spring(229)Python(130)数据库(95)Julia(87)云计算&大数据(56)Celery(51)ActiveMQ(46)PostgreSQL(41)

语言

全部英语(691)中文(简体)(57)中文(繁体)(10)中文(简体)(3)英语(3)韩语(2)西班牙语(1)日语(1)

格式

全部PDF文档 PDF(592)其他文档 其他(129)TXT文档 TXT(47)DOC文档 DOC(1)PPT文档 PPT(1)
 
本次搜索耗时 0.071 秒,为您找到相关结果约 770 个.
  • 全部
  • 后端开发
  • Java
  • Spring
  • Python
  • 数据库
  • Julia
  • 云计算&大数据
  • Celery
  • ActiveMQ
  • PostgreSQL
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 中文(简体)
  • 英语
  • 韩语
  • 西班牙语
  • 日语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • TXT文档 TXT
  • DOC文档 DOC
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • 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 | 5 月前
    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 | 5 月前
    3
  • pdf文档 RocketMQ v3.2.4 开发指南

    .................................................................................. 32 11.2.3 Producer 配置 ............................................................................................ ............................................................................... 35 11.3.1 针对 Producer ............................................................................................... ................................... 40 项目开源主页:https://github.com/alibaba/RocketMQ IV 13 Producer 最佳实践 ..........................................................................................
    0 码力 | 52 页 | 1.61 MB | 1 年前
    3
  • pdf文档 消息中间件RocketMQ原理解析 - 斩秋

    .................. 4 第一章: producer .......................................................................................................................... 5 一:Producer 启动流程 ..................... ............................ 5 二:Producer 如何发送消息 ................................................................................................... 6 2.1 producer 发送普通消息 .......................... ............................................................. 43 6.4:Broker 与 client(comsumer ,producer)之间的心跳, ................................ 44 6.5:Broker 与 namesrv 之间的心跳 ........................
    0 码力 | 57 页 | 2.39 MB | 1 年前
    3
  • pdf文档 Apache RocketMQ 从入门到实战

    topic 的路 由信息。 本文来自『中间件兴趣圈』公众号,仅作技术交流,未授权任何商业行为。 11 > 1.1 RocketMQ 核心概念扫盲篇 3. Client 消息客户端,包括 Producer(消息发送者)和 Consumer(消费消费者).客户端在同一 时间只会连接一台 nameserver,只有在连接出现异常时才会向尝试连接另外一台。客户 端每隔 30s 向 Nameserver 温馨提示:消息发送者在到默认路由信息时,其队列数量,会选择 DefaultMQProdu cer#defaultTopicQueueNums 与 Nameserver 返回的的队列数取最小值,DefaultMQ Producer#defaultTopicQueueNums 默认值为 4,故自动创建的主题,其队列数量默认 为 4。 Step3:发送消息 DefaultMQProducerImpl#sendKernelImpl InterruptedException { DefaultMQProducer producer = new DefaultMQProducer("please_rename_unique_ group_name"); producer.setNamesrvAddr("127.0.0.1:9876"); producer.start(); for (int i = 0; i < 9; i++)
    0 码力 | 165 页 | 12.53 MB | 1 年前
    3
  • pdf文档 Apache ActiveMQ Artemis 2.1.0 User Manual

    Point-to-Point Messaging Point-to-point messaging is a common scenario in which a message sent by a producer has only one consumer. AMQP and JMS message producers and consumers can make use of point-to-point example of JMS Clients, the messages sent by a JMS queue producer will be routed using the anycast routing type. Messages sent by a JMS topic producer will use the multicast routing type. In addition when ", "red"); producer.send(redMessage) TextMessage greenMessage = senderSession.createTextMessage("Green"); greenMessage.setStringProperty("color", "green"); producer.send(greenMessage)
    0 码力 | 407 页 | 1.93 MB | 1 年前
    3
  • pdf文档 Apache ActiveMQ Artemis 2.0.0 User Manual

    subscribe addresses. Point-to-point messaging is a common scenario in which a message sent by a producer has only one consumer. AMQP and JMS message producers and consumers can make use of point-to-point example of JMS Clients, the messages sent by a JMS queue producer will be routed using the anycast routing type. Messages sent by a JMS topic producer will use the multicast routing type. In addition when or", "red"); producer.send(redMessage) TextMessage greenMessage = senderSession.createTextMessage("Green"); greenMessage.setStringProperty("color", "green"); producer.send(greenMessage)
    0 码力 | 246 页 | 1.86 MB | 1 年前
    3
  • pdf文档 Apache ActiveMQ Artemis 2.2.0 User Manual

    Point-to-Point Messaging Point-to-point messaging is a common scenario in which a message sent by a producer has only one consumer. AMQP and JMS message producers and consumers can make use of point-to-point example of JMS Clients, the messages sent by a JMS queue producer will be routed using the anycast routing type. Messages sent by a JMS topic producer will use the multicast routing type. In addition when ", "red"); producer.send(redMessage) TextMessage greenMessage = senderSession.createTextMessage("Green"); greenMessage.setStringProperty("color", "green"); producer.send(greenMessage)
    0 码力 | 407 页 | 1.93 MB | 1 年前
    3
  • pdf文档 Apache ActiveMQ Artemis 2.4.0 User Manual

    Point-to-Point Messaging Point-to-point messaging is a common scenario in which a message sent by a producer has only one consumer. AMQP and JMS message producers and consumers can make use of point-to-point example of JMS Clients, the messages sent by a JMS message producer will be routed using the anycast routing type. Messages sent by a JMS topic producer will use the multicast routing type. In addition when ", "red"); producer.send(redMessage) TextMessage greenMessage = senderSession.createTextMessage("Green"); greenMessage.setStringProperty("color", "green"); producer.send(greenMessage)
    0 码力 | 265 页 | 2.84 MB | 1 年前
    3
  • pdf文档 Apache ActiveMQ Artemis 2.3.0 User Manual

    Point-to-Point Messaging Point-to-point messaging is a common scenario in which a message sent by a producer has only one consumer. AMQP and JMS message producers and consumers can make use of point-to-point example of JMS Clients, the messages sent by a JMS message producer will be routed using the anycast routing type. Messages sent by a JMS topic producer will use the multicast routing type. In addition when ", "red"); producer.send(redMessage) TextMessage greenMessage = senderSession.createTextMessage("Green"); greenMessage.setStringProperty("color", "green"); producer.send(greenMessage)
    0 码力 | 420 页 | 3.03 MB | 1 年前
    3
共 770 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 77
前往
页
相关搜索词
MultiProducerConsumerLockFreeAtomicQueueSinglefreeFIFOFromtheGroundUpRocketMQ开发指南消息中间中间件消息中间件原理解析Apache入门实战ActiveMQArtemis2.1UserManual2.02.22.42.3
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩