{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

Elasticsearch服务器开发(第2版)

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

Elasticsearch服务器开发(第2版)

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Editer Recommend

Elasticsearch是基于Lucene的新一代分布式、RESTful风格的开源搜索引擎,具有实时搜索、稳定、快速、安装使用方便等优点。Elasticsearch在全球拥有众多知名用户:GitHub使用Elasticsearch搜索20 TB的数据——包括13亿文件和1300亿行代码,有“音频分享界YouTube”之称的SoundCloud使用Elasticsearch为1.8亿会员在线即时提供音频搜索结果,德国商务社交网站Xing使用Elasticsearch为1400万会员提供可扩展、实时的搜索,手机服务网站Foursquare使用Elasticsearch实时搜索5000万个地点,浏览器插件StumbleUpon利用Elasticsearch每天向它们的社区发送数百万条推荐。
Content Description

《Elasticsearch服务器开发(第2版)》这一版针对Elasticsearch的新版本更新了内容,增加了第1版中遗漏的重要内容。本书首先介绍如何启动和运行Elasticsearch、Elasticsearch的基本概念,以及如何以最基本的方式索引和搜索数据。接下来,本书讨论了Querydsl查询语言,通过它可以创建复杂的查询并过滤返回的结果。此外,本书还展示了如何使用切面技术(faceting)基于查询结果来计算汇总数据,如何使用新引进的聚合框架,如何使用Elasticsearch的空间搜索和预搜索。最后,这本书将阐释Elasticsearch的管理API,如分片安置控制和集群处理等功能。
不管你是全文检索和Elasticsearch的初学者,还是使用过Elasticsearch,你都能从本书中有所收获。
Author Description

Rafal Kuc ,solr.pl网站联合创始人,现为Sematext集团顾问和软件工程师,专注于Apache Lucene、Solr、Elasticsearch和Hadoop等开源技术。Rafal拥有超过12年的多领域软件经验,其中既包括银行软件又包括电子商务产品。Rafal也是Apache Solr 3.1 Cookbook等技术图书的作者,并且一直是Lucene Eurocon、Berlin Buzzwords、ApacheCon和Lucene Revolution等会议的演讲嘉宾。

Marek Rogozinski,
solr.pl网站联合创始人,拥有10年以上的软件架构师和顾问从业经验,专门研究基于Solr和Elasticsearch等开源搜索引擎的解决方案,以及Hadoop、HBase和Twitter Storm等用于大数据分析的软件。
Catalogue

第1章Elasticsearch集群入门1
1.1全文检索1
1.1.1Lucene词汇表和架构1
1.1.2输入数据分析3
1.1.3评分和查询相关性4
1.2Elasticsearch基础4
1.2.1数据架构的主要概念4
1.2.2Elasticsearch主要概念6
1.2.3索引建立和搜索6
1.3安装并配置集群8
1.3.1安装Java8
1.3.2安装Elasticsearch8
1.3.3在Linux上用二进制包安装Elasticsearch9
1.3.4目录布局9
1.3.5配置Elasticsearch10
1.3.6运行Elasticsearch11
1.3.7关掉Elasticsearch12
1.3.8Elasticsearch作为系统服务运行13
1.4用RESTAPI操作数据14
1.4.1理解Elasticsearch的RESTfulAPI14
1.4.2在Elasticsearch中存储数据15
1.4.3新建文档15
1.4.4检索文档16
1.4.5更新文档17
1.4.6删除文档18
1.4.7版本控制18
1.5使用URI请求查询来搜索20
1.5.1示例数据20
1.5.2URI请求20
1.5.3Lucene查询语法26
1.6小结27
第2章索引28
2.1Elasticsearch索引28
2.1.1分片和副本28
2.1.2创建索引29
2.2映射配置31
2.2.1类型确定机制31
2.2.2索引结构映射33
2.2.3不同的相似度模型43
2.2.4信息格式45
2.2.5文档值47
2.3批量索引以提高索引速度48
2.3.1为批量索引准备数据48
2.3.2索引数据48
2.3.3更快的批量请求50
2.4用附加的内部信息扩展索引结构50
2.4.1标识符字段50
2.4.2_type字段51
2.4.3_all字段52
2.4.4_source字段52
2.4.5_index字段53
2.4.6_size字段54
2.4.7_timestamp字段54
2.4.8_ttl字段55
2.5段合并介绍56
2.5.1段合并56
2.5.2段合并的必要性56
2.5.3合并策略57
2.5.4合并调度器57
2.5.5合并因子57
2.5.6调节58
2.6路由介绍58
2.6.1默认索引过程59
2.6.2默认搜索过程59
2.6.3路由61
2.6.4路由参数62
2.6.5路由字段62
2.7小结63
第3章搜索64
3.1查询Elasticsearch64
3.1.1示例数据65
3.1.2简单查询66
3.1.3分页和结果集大小67
3.1.4返回版本值68
3.1.5限制得分69
3.1.6选择需要返回的字段69
3.1.7使用脚本字段71
3.2理解查询过程72
3.2.1查询逻辑72
3.2.2搜索类型73
3.2.3搜索执行偏好74
3.2.4搜索分片API75
3.3基本查询76
3.3.1词条查询76
3.3.2多词条查询77
3.3.3match_all查询77
3.3.4常用词查询78
3.3.5match查询79
3.3.6multi_match查询81
3.3.7query_string查询82
3.3.8simple_query_string查询84
3.3.9标识符查询84
3.3.10前缀查询84
3.3.11fuzzy_like_this查询85
3.3.12fuzzy_like_this_field查询86
3.3.13fuzzy查询86
3.3.14通配符查询88
3.3.15more_like_this查询88
3.3.16more_like_this_filed查询89
3.3.17范围查询90
3.3.18最大分查询90
3.3.19正则表达式查询91
3.4复合查询91
3.4.1布尔查询92
3.4.2加权查询93
3.4.3constant_score查询94
3.4.4索引查询94
3.5查询结果的过滤95
3.5.1使用过滤器95
3.5.2过滤器类型96
3.5.3过滤器的缓存104
3.6高亮显示105
3.6.1高亮显示入门105
3.6.2字段配置106
3.6.3深入底层107
3.6.4配置HTML标签107
3.6.5控制高亮片段108
3.6.6全局设置与局部设置108
3.6.7需要匹配109
3.6.8信息高亮器111
3.7验证查询113
3.8数据排序115
3.8.1默认排序115
3.8.2选择用于排序的字段116
3.8.3指定缺少字段的行为118
3.8.4动态条件118
3.8.5排序规则和国家特有字符119
3.9查询重写119
3.9.1重写过程示例119
3.9.2查询重写的属性120
3.10小结121
第4章扩展索引结构122
4.1索引树形结构122
4.1.1数据结构122
4.1.2分析123
4.2索引非扁平数据124
4.2.1数据124
4.2.2对象125
4.2.3数组125
4.2.4映射125
4.2.5向Elasticsearch发送映射127
4.2.6动态还是非动态127
4.3使用嵌套对象128
4.4使用父子关系131
4.4.1索引结构和数据索引131
4.4.2查询132
4.4.3父子关系和过滤134
4.4.4性能考虑134
4.5使用更新API修改索引结构135
4.5.1映射135
4.5.2添加一个新字段135
4.5.3修改字段136
4.6小结137
第5章更好的搜索138
5.1ApacheLucene评分简介138
5.1.1当文档被匹配时138
5.1.2默认评分公式139
5.1.3相关性的意义140
5.2Elasticsearch的脚本功能140
5.2.1脚本执行过程中可用的对象140
5.2.2MVEL141
5.2.3使用其他语言141
5.2.4使用自定义脚本库142
5.3搜索不同语言的内容145
5.3.1区分处理不同语言145
5.3.2多语言处理145
5.3.3检测文档的语言146
5.3.4示例文档146
5.3.5映射文件147
5.3.6查询148
5.4使用查询加权影响得分150
5.4.1加权150
5.4.2为查询添加加权150
5.4.3修改得分153
5.5索引时加权何时有意义160
5.5.1在输入数据中定义字段加权160
5.5.2在映射中定义加权161
5.6同义词161
5.6.1同义词过滤器161
5.6.2定义同义词规则162
5.6.3查询时或索引时的同义词扩展164
5.7理解解释信息164
5.7.1理解字段分析164
5.7.2解释查询165
5.8小结167
第6章超越全文检索168
6.1聚合168
6.1.1一般查询结构168
6.1.2可用的聚合170
6.1.3聚合的嵌套185
6.1.4桶排序和嵌套聚合187
6.1.5全局和子集187
6.2切面190
6.2.1文档结构190
6.2.2返回的结果190
6.2.3使用查询进行切面计算191
6.2.4使用过滤器进行切面计算192
6.2.5terms切面193
6.2.6基于范围的切面194
6.2.7数值和日期直方图切面196
6.2.8数值型字段统计数据的计算197
6.2.9词条统计数据的计算198
6.2.10地理切面199
6.2.11切面结果的过滤200
6.2.12内存考虑201
6.3使用建议器201
6.3.1可用的建议器类型201
6.3.2包含建议器201
6.3.3term建议器203
6.3.4phrase建议器204
6.3.5completion建议器205
6.4预匹配器209
6.4.1示例索引209
6.4.2预匹配器的准备209
6.4.3深入211
6.5文件的处理214
6.6地理217
6.6.1为空间搜索准备映射217
6.6.2示例数据218
6.6.3示例查询218
6.6.4任意地理形状222
6.7卷动API226
6.7.1问题定义226
6.7.2作为解决方案的卷动226
6.8多词条过滤器228
6.9小结232
第7章深入Elasticsearch集群233
7.1节点发现233
7.1.1发现的类型233
7.1.2主节点234
7.1.3设置集群名235
7.1.4节点的ping设置236
7.2时光之门与恢复模块236
7.2.1时光之门236
7.2.2恢复控制237
7.3为高查询和高索引吞吐量准备Elasticsearch集群238
7.3.1过滤器缓存238
7.3.2字段数据缓存和断路器238
7.3.3存储模块239
7.3.4索引缓冲和刷新率240
7.3.5线程池的配置240
7.3.6结合起来,一些通用建议241
7.4模板和动态模板244
7.4.1模板244
7.4.2动态模板245
7.5小结246
第8章集群管理248
8.1Elasticsearch时光机248
8.1.1创建快照存储库248
8.1.2创建快照249
8.1.3还原快照251
8.1.4清理:删除旧的快照252
8.2监控集群的状态和健康度252
8.2.1集群健康度API252
8.2.2索引统计API253
8.2.3状态API256
8.2.4节点信息API256
8.2.5节点统计API257
8.2.6集群状态API257
8.2.7挂起任务API258
8.2.8索引段API258
8.2.9catAPI258
8.3控制集群的再平衡260
8.3.1再平衡260
8.3.2集群的就绪260
8.3.3集群再平衡设置260
8.4控制分片和副本的分配261
8.4.1显式控制分配262
8.4.2集群范围的分配264
8.4.3每个节点上的分片和副本数量265
8.4.4手动移动分片和副本265
8.5预热267
8.5.1定义一个新的预热查询267
8.5.2获取定义的预热查询268
8.5.3删除一个预热查询269
8.5.4禁用预热功能269
8.5.5查询的选择270
8.6使用索引别名来简化你的日常工作270
8.6.1别名271
8.6.2创建别名271
8.6.3修改别名271
8.6.4合并命令272
8.6.5获取所有别名272
8.6.6移除别名273
8.6.7别名中的过滤273
8.6.8别名和路由273
8.7Elasticsearch插件274
8.7.1基础知识274
8.7.2安装插件274
8.7.3移除插件275
8.8更新设置API275
8.9小结276
Introduction

欢迎阅读本书的第2版,这一版不仅针对Elasticsearch的最新版本更新了内容,还添加了一些在第1版中遗漏的重要内容。阅读这本书,你将踏上Elasticsearch服务器提供的全文检索的精彩旅程。本书首先对Elasticsearch进行一般性介绍,其中包括如何启动和运行Elasticsearch、Elasticsearch的基本概念,以及如何以最基本的方式索引和搜索数据。
本书也将讨论被称为Querydsl的查询语言,通过它可以创建复杂的查询并过滤返回的结果。除了这些,你还将看到如何使用切面技术(faceting)基于查询结果来计算汇总数据,以及如何使用新引进的聚合框架(分析引擎,可以为你的数据赋予意义)。我们将共同实现自动完成功能,并学习如何使用Elasticsearch的空间搜索能力(spatial capability)和预搜索(prospective search)。
最后,这本书将向你展示Elasticsearch的管理API,如分片安置控制和集群处理等功能。
本书主要内容
第1章Elasticsearch集群入门,介绍什么是全文检索、Apache Lucene、文本分析、如何运行和配置Elasticsearch。最后,还会说明如何以最基本的方式索引和搜索数据。
第2章索引,展示索引的工作原理,如何创建索引结构,可以使用什么样的数据类型,如何加速索引,什么是段(segment),合并(merging)是如何工作的,什么是路由(routing)。
第3章搜索,介绍Elasticsearch的全文搜索功能。我们讨论如何查询,查询的工作原理,有哪些基本查询和复合查询。除此之外,本章还将展示如何过滤查询结果,如何高亮显示以及修改查询结果的排序。
第4章扩展索引结构,讨论如何索引更复杂的数据结构。本章讨论如何索引树状数据类型和关系型数据,以及修改索引的结构。
第5章更好的搜索,涵盖Apache Lucene的评分功能,以及使用Elasticsearch的脚本功能和语言分析器如何影响评分 。
第6章超越全文检索,详细介绍聚合框架的功能、切面以及如何使用Elasticsearch实现拼写检查和自动完成功能。此外,读者将学会如何索引二进制文件、处理地理空间数据,以及高效处理大数据集。
第7章深入Elasticsearch集群,讨论节点发现机制,恢复和时光之门(Gateway)模块,高查询和高索引用例场景下的模板和集群。
第8章集群管理,涵盖Elasticsearch备份功能、集群监控、再平衡和移动分片。除此之外,你还会学到如何使用热身功能和别名,安装插件,以及使用更新API来更新集群设置。
学习本书的准备工作
这本书所有的例子和功能都是用Elasticsearch服务器1.0.0版本写的,此外,你需要一个用来发送HTTP请求的命令工具,比如cURL,它在大多数操作系统上都可用。请注意,本书中的所有例子都使用cURL。如果你想使用另一种工具,请注意修改HTTP请求的格式,以便适合你所选择的工具。
此外,某些章节可能需要额外的软件,例如Elasticsearch插件,需要时我们会明确提及。
本书读者对象
如果你是一个全文检索和Elasticsearch的初学者,那么本书就是为你准备的。你将学到Elasticsearch的基础知识,以及如何使用一些高级功能。
如果你已经知道并使用了Elasticsearch,仍然会发现本书很有趣,因为它通过例子和描述,很好地概述了Elasticsearch的所有功能。
如果你知道Apache Solr搜索引擎,那么这本书也可以用来比较Apache Solr和Elasticsearch的某些功能。了解一些Elasticsearch的知识后,你可能会发现它更适合你。

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book