destination

阅读 / 问答 / 标签

destination什么时候用复数

destination[英][u02ccdestu026au02c8neu026au0283n][美][u02ccdu025bstu0259u02c8neu0283u0259n]n.目的,目标; 目的地,终点; [罕用语]预定,指定; 复数:destinations有很多目标的时候,就可以使用复数了。

ActiveMQ之Destination

Wildcard用来支持名字分层体系,它不是JMS规范的一部分,是ActiveMQ的扩展。 ActiveMQ支持以下三种wildcard: 示例,假设有两个Destination:PRICE.STOCK.NASDAQ.IBM 和 PRICE.STOCK.NYSE.SUNW。那么如下配置通配符: 路径符号替换,将“/"替换".",添加如下插件: 组合队列Composite Destinations 允许用一个虚拟的destination代表多个destinations,这样就可以通过composite destinations在一个操作中同时向多个queue/topic发送消息。 有两种实现方式: 在创建客户端连接的Destination时,多个destination之间采用","分隔。如下: 如果希望不同的Destination的话,需要加前缀“queue://”或者“topic://”。如下 客户端发送示例: 当客户端向“comQueue”发送消息时,消息就会同时发送到"queue.FOO"和“topic.FOO”中。 通过配置selecter来过滤掉不需要的消息,如下: 在启动ActiveMQ的时候如果需要创建Destination的话,可以在activemq.xml中配置: 在ActiveMQ的queue在不使用之后,可以通过web控制台或者JMX方式来删除掉,当然,也可以通过配置,使得broker可以自动探测到无用的队列并删除掉,回收相应资源。 参数说明: schedulePeriodForDestinationPurge :设置多长时间检查一次,单位是毫秒。 inactiveTimoutBeforeGC : 设置当Destination为空后,多长时间被删除,单位是毫秒。 gcInactiveDestinations :设置删除掉不活动的队列,默认为false。 Destination Options是一种无需扩展JMS API即可向JMS消费者提供扩展配置选项的方法。这些选项使用URL查询语法在创建消费者的目标名称中进行编码。 消费者选项如下: 虚拟destination用来创建逻辑destination,客户端可以通过它来生产和消费消息,它会把消息映射到物理destination。 ActiveMQ支持2种方式: ActiveMQ中,topic只有在持久订阅下才会持久化消息。JMS持久化订阅者 MessageConsumer 在创建时会生成一个 唯一的 JMS clientID 和一个持久化订阅者的name。 为了符合JMS,对于一个JMSclientID,同一时间,只能有一个活跃的JMS连接,并且,对于一个clientID和订阅者name而言,只有一个消费者可以是活跃的。也就是说,对于给定的topic订阅者来说,只能由一个活跃的进程进行消费。这意味着我们不能实现: 如今,JMS中的队列语义提供了通过多个消费者来实现可靠的负载均衡——允许多线程,进程和机器来处理消息。然后我们就有了成熟而复杂的负载均衡技术,就像Messge Groups一样在维护订单时进行负载均衡和并行化处理。如下图所示,全量的消息先发送到队列,然后再分发给消费者,通过队列来解决负载均衡和故障转移问题。 virtual topic背后的思想是生产者用正常的JMS方式把消息发送到一个topic。消费者可以继续使用JMS标准中的Topic语义。然而,如果 topic 是虚拟的, 订阅一个逻辑topic的消费者可以从一个真实队列中消费,允许多个消费者分布在多个机器上且多线程的进行负载均衡。 例如,假定我们现在有一个叫做 VirtualTopic.Orders 的topic。(前缀 VirtualTopic. 表明这是一个 virtual topic)。 我们希望将orders 发送到系统A 和 系统B。于是,用通常的 durable topics ,我们需要为 clientID_A 和 "A" 创建一个JMS消费者,同时为 clientID_B 和 "B"创建一个JMS消费者。 有了virtual topics 我们可以直接从队列 Consumer.A.VirtualTopic.Orders 中为系统A 消费,或者从队列 Consumer.B.VirtualTopic.Orders 中为系统B 消费。 默认前缀是: VirtualTopic.> 自定义消费虚拟地址默认格式: Consumer. .VirtualTopic.>* 下面的示例演示如何使所有主题成为虚拟主题。下面的示例使用名称“>“”表示“匹配所有主题”,“VirtualTopicConsumers”为消费队列的前缀。 其他的配置参数: 通常情况下,使用网络连接消费者队列。在这种情况下,不要在虚拟主题上桥接任何普通主题消费者,因为任何转发的消息都会再次分散到网络代理上的消费者队列,从而导致消息重复。下面示例展示了如何排除虚拟队列: ActiveMQ中每个queue中的消息只能被一个consumer消费。然而,有时候你可能希望能够监视生产者和消费者之间的消息流。你可以通过使用Virtual Destinations 来建立一个virtual queue 来把消息转发到多个queues中。但是 为系统中每个queue都进行如此的配置可能会很麻烦。 使用ActiveMQ支持Mirrored Queues。Broker会把发送到某个queue的所有消息转发到一个名称类似的topic,因此监控程序只需要订阅这个mirrored queue topic。为了启用Mirrored Queues,首先要将BrokerService的“useMirroredQueues“属性设置成true,然后可以通过destinationInterceptors设置其它属性,如mirror topic的前缀,缺省是“VirtualTopic.Mirror.”。如下订阅“*.qmirror”的主题就开启了mirrored queue。 http://activemq.apache.org/features

destination是什么意思

destination目的地双语对照词典结果:destination[英][u02ccdestu026au02c8neu026au0283n][美][u02ccdu025bstu0259u02c8neu0283u0259n]n.目的,目标; 目的地,终点; [罕用语]预定,指定; 复数:destinations以上结果来自金山词霸柯林斯高阶英汉词典网络释义同反义词百科释义1.N-COUNT目的地;终点The destination of someone or something is the place to which they are going or being sent.Spain is still our most popular holiday destination...西班牙仍是我们最喜爱的度假去处。收起例句:1.. And that"s the best destination. 那里是最佳目的地。w2.A sustainable competitive advantage is not a destination, but a journey. 可持续的竞争优势不是目的,只是过程。3.Twitter is flirting with media-like products, like "destination pages" withcurated content. Twitter正在尝试类似于媒体的产品,比如其“目标网页”就包含了经策划过的内容。

destination中文什么意思

下载一个网易词典

destination的形容词是什么?

destination[英][u02ccdestu026au02c8neu026au0283n][美][u02ccdu025bstu0259u02c8neu0283u0259n]n.目的,目标; 目的地,终点; [罕用语]预定,指定; 复数:destinations

destination可数吗?

destination 的意思是目的地、终点,是可数名词,复数形式是destinations. 例句: Venice is one of the hottest tourist destinations in the world. 威尼斯是世界上最热门的旅游目的地之一。 扩展资料   Mount Asgard and Thor Peak are dream destinations for rock climbers.   阿斯加德山和托尔峰是攀岩者的梦想目的.地。   Ellis Island has become one of America"s most popular tourist destinations.   埃利斯岛已经成为美国最受欢迎的游览地之一。   The Chilkat remains one of Alaska"s best winter photographic destinations.   奇尔卡特仍然是阿拉斯加最好的冬季摄影目的地之一。   Make a list of your goal destinations.   写出一个你的人生目标的清单。

destination是什么意思

终点、目的地

destination是什么意思

目的地,终点,目标

destination什么意思

destination 英[u02ccdestu026au02c8neu026au0283n] 美[u02ccdu025bstu0259u02c8neu0283u0259n] n. 目的,目标; 目的地,终点; [罕用语] 预定,指定; [网络] 目的地; 目标; 目的港; [例句]Spain is still our most popular holiday destination.西班牙仍是我们最喜爱的度假去处。[其他] 复数:destinations

destination什么意思

estination英[u02ccdestu026au02c8neu026au0283n]美[u02ccdu025bstu0259u02c8neu0283u0259n]n.目的,目标; 目的地,终点; [罕用语]预定,指定网络目的地; 目标; 目的港The vanguard units have reached the destination.部队前锋已到达目的地。We want to be the destination for Chinese investment.“我们希望英国能成为中国投资者的目的地。www.fortunechina.comTo restore the cloned partition image, the destination virtual disk has to be presented to Clonezilla as formatted.要恢复克隆后的分区映像,必须将格式化后的目标虚拟磁盘提供给Clonezilla。www.ibm.comAgreed stopping places means those places, except the place of departure and the place of destination, set out in the ticket or shown in our timetables as scheduled stopping places on your route.“约定的经停地点”是指除出发地点和目的地点以外,在您的客票或者我们的班期时刻表中列明作为您的旅行路线中预定经停的地点。百度翻译例句库San Francisco is my final destination.旧金山是我的终点站。

destinations翻译成中文

destinations翻译成中文是目的地。英 [destu026a"neu026au0283nz]美[destu026a"neu026au0283nz] 释义n. 目的地,终点;抵达站(destination 的复数形式)。例句如下:1、Today"s special offer gives you a choice of three destinations.今天的特惠为您提供3个可选目的地。2、Venice is one of the hottest tourist destinations in the world.威尼斯是世界上最热门的旅游目的地之一。3、Mount Asgard and Thor Peak are dream destinations for rock climbers.阿斯加德山和托尔峰是攀岩者的梦想目的地。4、There is no direct flight serving these two destinations now, while it takes around 5 hours to get there by car.现在没有直飞这两个目的地的航班,而开车到那里大约需要5个小时。5、When you were a child as you learned new things, your brain created more and more roads to different destinations.若你还是一个孩子,在学习新事物的时候,你的大脑会创造出越来越多通往不同目的地的道路。

destination什么意思

destination英[u02ccdestu026au02c8neu026au0283n]美[u02ccdu025bstu0259u02c8neu0283u0259n]n.目的,目标; 目的地,终点; [罕用语]预定,指定复数:destinations形近词:pectination festination festinatingWe want to be the destination for Chinese investment.“我们希望英国能成为中国投资者的目的地。To restore the cloned partition image, the destination virtual disk has to be presented to Clonezilla as formatted.要恢复克隆后的分区映像,必须将格式化后的目标虚拟磁盘提供给Clonezilla。

出现Select local destination drive by clicking on the drive number 标题的框时,下边只有一个 1 然后

出现这个 是在GHOST备份文件,恢复系统的时候出现的下边是具体步骤,其中包括你说的这串英文字母-----------------------------------刚搜到GHOST使用教程:Ghost使用教程 功能一:磁盘复制到磁盘(不常用,是硬盘对硬盘之间的数据备份,也是分区+数据的克隆) 1. 在GHOST的主菜单上选择"Local" -> "Disk" -> "To Disk"(位置记法是1,1,1) 2. 在"Select local source drive by clicking on the drive number"对话框中, 选择源磁盘驱动器。 3. 在"Select local destination drive by clicking on the drive number"对话框中, 选择目标磁盘驱动器。 4. 在"Destination Drive Details"对话框中显示的是目标磁盘的分区布局, 选择"OK". 6. 在"Question"对话框中, 选择"YES",开始克隆,选择"NO",返回主菜单。

同样两快硬盘进行对烤却有提示"Destination drive too small"

当你进行DISK TO DISK提示是目标盘太小,应该是你的一块磁盘的空间不够,下面一个提示是没有系统时间,按任意键继续,这个应该对你的操作没有影响,可能是你的主板电池没有电了。下面那个选项没有看过,我是根据意思翻译的,不知道对你有没有帮助。
 首页 上一页  1 2