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

无数据

分类

全部后端开发(134)Java(134)Spring(82)ActiveMQ(46)

语言

全部英语(128)中文(简体)(6)

格式

全部PDF文档 PDF(85)其他文档 其他(33)TXT文档 TXT(16)
 
本次搜索耗时 0.108 秒,为您找到相关结果约 134 个.
  • 全部
  • 后端开发
  • Java
  • Spring
  • ActiveMQ
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • TXT文档 TXT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Java 源码剖析——彻底搞懂Reference 和ReferenceQueue

    ap,则采用判断get()是否为null来作处理。 接下来是它的主要成员: private T referent; /* Treated specially by GC */ 在这里我们首先明确一些名词,Reference类也被称为引用类,它的实例 Reference Instance就是引 实例,但是由于它是一个抽象类,它的实例只能是子类软(soft)引用,弱(weak)引用 被处理的引用实例,我们在注释中看到的四个状态,是引用 例的内部状态,不可以被外部查看或是直接修改: ● Active:新创建的引用实例处于Active状态,但当GC检测到该实例引用的实际对象的可达性发生某 适当的改变(实际对象对于GC roots不可达)后,它的状态将会根据此实例是否注册在引用队列中而变 Pending或是Inactive。 ● Pending:当引用实例被放置在pending-Reference 注册在一个引用队列中,该实例将永远不会进入Enqueued状态。 ● Inactive:一旦某个引用实例处于Inactive状态,它的状态将不再会发生改变,同时说明该引用实例 指向的实际对象一定会被GC所回收。 事实上Reference类并没有显示地定义内部状态值,JVM仅需要通过成员queue和next的值就可以判 当前引用实例处于哪个状态: ● Active:queue为创建引用实例时传入
    0 码力 | 6 页 | 283.24 KB | 1 年前
    3
  • pdf文档 Nacos架构&原理

    模块各自的推送通道都是按照自己的设计模型来实现的。 产品 推送模型 数据⼀致性 痛点 说明 Nacos Config 异步 Servlet 基于 MD5 比 对⼀致性 http 短连接,30 秒定 期创建销毁连接,GC 压力大 md5 值计算也有⼀定 开销,在可接受范围内 Nacos Naming HTTP/UDP UDP 推送 + 补偿查询 丢包,云架构下无法 反向推送 配置和服务器模块的数据推送通道不统⼀,http ext.dirs=${JAVA_HOME}/jre/lib/ext:${JAVA _HOME}/lib/ext -Xloggc:/home/admin/nacos/logs/nacos_gc.log -verbose:gc -XX:+PrintGCDetai ls -XX:+PrintGCDateStamps -XX:+PrintGCTimeStamps -XX:+UseGCLogFileRotation 126 测试服务端在频繁发布/上下线场景下的系统指标和推送情况。持续进行 30min。 测试数据 1. 大规模服务注册后达到稳定状态 版本 压力规模 机器数*线程 阶段 CPU LOAD GC 推送失败率 实际服务数/ 实例数 2.0.0- BETA 200 * 500 (10w 客户端, 50w 服务实例) 注册 23%~30% 3~5 无 FGC 单台服务端 (4982/62112)
    0 码力 | 326 页 | 12.83 MB | 9 月前
    3
  • pdf文档 一次线上java 应用响应时间过长问题的排查

    这,这,这不科学。

    垃圾回收

    看垃圾回收日志,发现一直在进行 Full GC,但是几乎没啥效果,GC 完了,老年代依然是几乎 满的状态。
    即使是 CMS,也不能避免传说中的 stop the world,所以响应时间变长了。
    但是,现在问题来了,Full GC 回收不掉的对象都是啥啥啥?

    分析 java 堆内存

    0 码力 | 3 页 | 247.74 KB | 1 年前
    3
  • pdf文档 ActiveMQ Artemis 2.27.1 Documentation

    to update diverts Ability to "disable" a queue so that messages are not routed to it Support JVM GC & thread metrics Support for resetting queue properties by unsetting them in broker.xml Undeploy count metrics from all queues to get the total). JVM memory metrics are also exported by default and GC, thread metrics, and Netty metrics can be configured Configuration Metrics for all addresses and JVM metrics: true gc>truegc> true
    0 码力 | 414 页 | 6.20 MB | 1 年前
    3
  • pdf文档 Apache ActiveMQ Artemis 2.30.0 User Manual

    diverts Versions 19 Ability to "disable" a queue so that messages are not routed to it Support JVM GC & thread metrics Support for resetting queue properties by unsetting them in broker.xml Undeploy queues to get the total). Optional metrics include: JVM memory metrics (exported by default) JVM GC JVM thread Netty File descriptors Processor Uptime Configuration Metrics for all addresses and true gc>truegc> true
    0 码力 | 500 页 | 6.37 MB | 1 年前
    3
  • pdf文档 Apache ActiveMQ Artemis 2.26.0 User Manual

    to update diverts Ability to "disable" a queue so that messages are not routed to it Support JVM GC & thread metrics Support for resetting queue properties by unsetting them in broker.xml Undeploy count metrics from all queues to get the total). JVM memory metrics are also exported by default and GC, thread metrics, and Netty metrics can be configured Configuration Metrics for all addresses and true gc>truegc> true
    0 码力 | 487 页 | 6.28 MB | 1 年前
    3
  • pdf文档 Apache ActiveMQ Artemis 2.28.0 User Manual

    to update diverts Ability to "disable" a queue so that messages are not routed to it Support JVM GC & thread metrics Support for resetting queue properties by unsetting them in broker.xml Undeploy count metrics from all queues to get the total). JVM memory metrics are also exported by default and GC, thread metrics, and Netty metrics can be configured Configuration Metrics for all addresses and true gc>truegc> true
    0 码力 | 494 页 | 6.33 MB | 1 年前
    3
  • pdf文档 Apache ActiveMQ Artemis 2.22.0 User Manual

    to update diverts Ability to "disable" a queue so that messages are not routed to it Support JVM GC & thread metrics Support for resetting queue properties by unsetting them in broker.xml Undeploy count metrics from all queues to get the total). JVM memory metrics are also exported by default and GC, thread metrics, and Netty metrics can be configured Configuration Metrics for all addresses and true gc>truegc> true
    0 码力 | 502 页 | 6.34 MB | 1 年前
    3
  • pdf文档 Apache ActiveMQ Artemis 2.29.0 User Manual

    to update diverts Ability to "disable" a queue so that messages are not routed to it Support JVM GC & thread metrics Support for resetting queue properties by unsetting them in broker.xml Versions queues to get the total). Optional metrics include: JVM memory metrics (exported by default) JVM GC JVM thread Netty File descriptors Processor Uptime Configuration Metrics for all addresses and true gc>truegc> true
    0 码力 | 499 页 | 6.37 MB | 1 年前
    3
  • pdf文档 Apache ActiveMQ Artemis 2.21.0 User Manual

    to update diverts Ability to "disable" a queue so that messages are not routed to it Support JVM GC & thread metrics Support for resetting queue properties by unsetting them in broker.xml Undeploy count metrics from all queues to get the total). JVM memory metrics are also exported by default and GC, thread metrics, and Netty metrics can be configured Configuration Metrics for all addresses and true gc>truegc> true
    0 码力 | 503 页 | 6.34 MB | 1 年前
    3
共 134 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 14
前往
页
相关搜索词
Java源码剖析彻底搞懂ReferenceReferenceQueueNacos架构原理一次线上java应用响应时间过长问题排查ActiveMQArtemis2.27DocumentationApache2.30UserManual2.262.282.222.292.21
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩