{{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

Neo4j实战

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

Neo4j实战

{{__(":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
Content Description

本书以实例为依托,详细地对实例做建模分析,并给出经过测试的源代码,读者可以按照书的介绍一步一步地实现每一个实例,这是一种学习建模和编程的极为便捷的方法。本书也是一本对使用Neo4j对图形数据进行设计、建模和查询的综合指导书。书中探索了处理和查询图形数据的各种工具及其强大功能,包括图形遍历的概念及其使用方法,也讨论了Neo4j的图形查询语言Cypher和如何使用SpringDataNeo4j将Neo4j集成到应用程序中,以及如何使用服务器模式和嵌入式模式等内容。
Author Description

About the AuthorAleksa Vukotic,之前在Open Credo担任数据管理实践领导者,现任Noble Group的开发平台部主管。他是一个软件架构师和开发者、敏捷编程的倡导者、作者和培训师,并且是许多Neo4j项目的开发者,如用图形数据模型解决复杂的访问控制列表和推荐引擎问题。

Nicki Watt,是Open Credo的顾问。她务实、心灵手巧,是一个问题解决专家,乐于使用“正确的工具完成工作”。Nicki一直使用Neo4j等开源工具以及框架参与各种项目,包括对基于引擎问题的探究和推荐。她也是Spring Data Neo4j项目的贡献者之一。

Tareq Abedrabbo,是Open Credo的技术官(CTO)。他对编程语言有着强烈的兴趣,从Scala和Python到Google Go。他在几个NoSQL技术领域(包括Neo4j、MongoDB和Redis)有着非常丰富的知识,并在很早以前就开始积极从事Spring项目,是Spring Web Service项目的核心成员。

Dominic Fox,是Open Credo的顾问,尤其喜欢把对编程语言理论的见解进行实践并讲解给他人。他作为专业开发者涉足了多种领域的工作,包括文档管理、电信和金融,也包括Neo4j的培训。他一直期望创建优秀的工具和库,能使每天的编程工作更加直观、可靠。

Jonas Partner,是Open Credo的执行官(CEO),该公司是Neo Technology的服务合作伙伴,是解决复杂数据问题的专业公司。他还是《Spring Integration in Action》的合作作者。
Catalogue

译者序
序言
前言
作者简介
第一部分Neo4j概述
第1章 Neo4j数据库的一个应用案例 3
1.1 为什么要有Neo4j 4
1.2 关系数据库中的图形数据 4
1.3 Neo4j中的图形数据 8
1.4 大数据下的SQL联接操作与Neo4j图形遍历的对比 10
1.5 图形 13
1.6 Neo4j在NoSQL领域的地位 13
1.6.1 主键值存储 14
1.6.2 列族存储 14
1.6.3 面向文档的数据库 15
1.6.4 图形数据库 15
1.6.5 与NoSQL类数据库的比较 15
1.7 Neo4j具有与ACID兼容的数据格式 16
1.8 本章小结 17
第2章 Neo4j的数据模型 18
2.1 Neo4j中数据模型的类型 18
2.1.1 图表建模的一个简单实例 19
2.1.2 图表建模的一个复杂实例 20
2.2 领域建模 22
2.3 更多实例 26
2.3.1 地铁车站实例 26
2.3.2 乐队成员实例 27
2.4 本章小结 29
第3章 Neo4j开发入门 30
3.1 图形数据结构建模 30
3.2 使用Neo4j API 34
3.2.1 创建节点 34
3.2.2 创建关系 36
3.2.3 为节点添加属性 38
3.2.4 节点类型策略 40
3.2.5 为关系添加属性 41
3.3 节点标签 43
3.4 本章小结 46
第4章 强大的图形遍历功能 47
4.1 使用Neo4j核心Java API进行遍历 47
4.1.1 寻找起始节点 48
4.1.2 遍历直接关系 49
4.1.3 遍历深度为2的关系 51
4.1.4 内存使用注意事项 53
4.2 使用Neo4j的遍历API进行遍历 55
4.2.1 使用Neo4j的内置遍历结构 55
4.2.2 实现一个自定义评估函数 56
4.3 本章小结 59
第5章 数据索引 60
5.1 创建索引项 60
5.2 通过邮箱地址查找用户 62
5.3 对多个匹配结果的处理 64
5.4 对索引过的数据进行修改的处理 65
5.5 自动索引 66
5.5.1 模式索引 66
5.5.2 自动索引 69
5.6 索引的成本/效益权衡 70
5.6.1 索引查询的性能优势 71
5.6.2 当更新和插入数据时索引对性能的影响 72
5.6.3 索引的存储 73
5.7 本章小结 73
第二部分Neo4j应用开发
第6章 Neo4j的查询语言Cypher 77
6.1 Cypher简介 77
6.1.1 Cypher入门 78
6.1.2 执行Cypher查询 79
6.2 Cypher的基本句法 85
6.2.1 模式匹配 85
6.2.2 查找起始节点 89
6.2.3 过滤数据 92
6.2.4 获得结果 93
6.3 用Cypher更新图形数据 96
6.3.1 创建新图形实体 97
6.3.2 删除数据 99
6.3.3 更新节点和关系属性 99
6.4 高级Cypher 100
6.4.1 聚合 100
6.4.2 函数 101
6.4.3 with语句的管道功能 103
6.4.4 Cypher的兼容性 104
6.5 本章小结 104
第7章 事务 105
7.1 事务的基础知识 105
7.1.1 添加事务 107
7.1.2 打好基础,循序渐进 108
7.2 事务的高级功能 109
7.2.1 事务的语义 109
7.2.2 事务中的读取与显式读锁 111
7.2.3 事务中的写入与显式写锁 112
7.2.4 无效锁的危害 114
7.3 与其他事务管理系统的集成 114
7.4 事务事件 116
7.5 本章小结 117
第8章 深度遍历 118
8.1 遍历的顺序 118
8.1.1 深度优先 119
8.1.2 广度优先 121
8.1.3 深度优先与广度优先顺序的比较 122
8.2 扩展关系 124
8.2.1 标准扩展器 124
8.2.2 用于扩展的顺序关系 126
8.2.3 自定义扩展器 127
8.3 管理唯一性 130
8.3.1 NODE_GLOBAL唯一性 130
8.3.2 NODE_PATH唯一性 132
8.3.3 其他唯一性类型 133
8.4 双向遍历 134
8.5 本章小结 137
第9章 Spring Data Neo4j 138
9.1 SDN适合做什么 138
9.1.1 什么是Spring以及Spring与SDN是怎样关联的 140
9.1.2 SDN适合做什么(及不适合做什么) 140
9.1.3 从哪里获得SDN 141
9.1.4 从哪里获得更多的信息 141
9.2 用SDN建模 141
9.2.1 原始POJO域建模 142
9.2.2 注释域模型 144
9.2.3 建模节点实体 145
9.2.4 建模关系实体 148
9.2.5 建模节点实体之间的关系 150
9.3 访问和持久化实体 152
9.3.1 支持Spring的配置 152
9.3.2 Neo4jTemplate类 153
9.3.3 资源库 154
9.3.4 其他选项 157
9.4 对象图形映射选项 158
9.4.1 简单映射 158
9.4.2 基于AspectJ的高级映射 161
9.4.3 对象映射总结 164
9.5 执行查询和遍历 164
9.5.1 注释查询 164
9.5.2 动态派生查询 166
9.5.3 遍历 168
9.6 本章小结 168
第三部分Neo4j应用实例
第10章 Neo4j的嵌入式模式与服务器模式 171
10.1 使用模式概述 171
10.2 嵌入式模式 173
10.2.1 核心Java集成 173
10.2.2 其他基于JVM的集成 176
10.3 服务器模式 177
10.3.1 Neo4j服务器概述 178
10.3.2 使用细粒度Neo4j服务器模式的REST API 179
10.3.3 使用Cypher Neo4j服务器模式REST API端点 181
10.3.4 使用远程客户端库帮助访问Neo4j服务器 182
10.3.5 服务器插件和非托管扩展 184
10.4 权衡选项 184
10.4.1 对架构的考虑 185
10.4.2 对性能的考虑 187
10.4.3 其他需要考虑的事项 190
10.5 充分利用服务器模式 190
10.5.1 避免细粒度操作 191
10.5.2 使用Cypher 192
10.5.3 服务器插件 194
10.5.4 非托管扩展 196
10.5.5 流REST API 198
10.6 本章小结 199
第11章 Neo4j的架构与应用 200
11.1 高层Neo4j架构 200
11.1.1 设置场景 202
11.1.2 硬盘 202
11.1.3 存储文件 203
11.1.4 Neo4j缓存 205
11.1.5 事务日志及可恢复性 210
11.1.6 编程API 211
11.2 Neo4j的高可用性 212
11.2.1 Neo4j集群概述 213
11.2.2 设置Neo4j集群 216
11.2.3 复制——读和写的策略 218
11.2.4 缓存分区 222
11.2.5 HA小结 224
11.3 备份 225
11.3.1 离线备份 225
11.3.2 在线备份 227
11.3.3 从备份中还原数据 229
11.4 本书可能没有涵盖但你可能会关注的问题 229
11.4.1 安全 229
11.4.2 监控 229
11.5 本章小结 230
11.6 最后的设想 230
附录A 安装Neo4j服务器 231
附录B 设置和运行示例程序 236
附录C 设置使用SDN的项目环境 241
附录D 获得更多的帮助 247
Introduction

前言
从很早以前开始,图形问题就是计算机编程中一些最普遍的问题。回想那时,尤其是在编程时,需要建立层次结构树、访问控制列表和映射表。当要存储图形的时候,程序员将图形转换成表格并使用关系数据库作为低层存储。我们不得不做大量的探究来保存最基本的图形数据,直到有了以Neo4j为代表的图形数据库,才有了其他的选择。
十多年前,Neo4j就开始了它的生涯,2010年正式发布了1.0版本,2.0版本是在2013年12月发布的。我们当中的大多数人一直在积极使用Neo4j,并且见证了它的发展及在不同项目上的应用。图形数据库,尤其是Neo4j,获得了越来越高的关注度,越来越多的人和公司认识到,对于复杂的、具有挑战性的相互连接的数据,Neo4j是图形数据库中唯一的健壮和坚实的解决方案。
我们非常高兴能够浓缩我们的真实工作经历及知识编写成这本实践性很强的书。本书将为你打下一个坚实的基础并创建一些帮助你尽快运行Neo4j的项目。
关于本书Neo4j作为一个图形数据库在过去的大约十年间发生了很大的变化。从一个纯粹在基于Java领域内操作的图形数据库开始,它已经发展成为适应许多语言和框架的图形数据库。
当我们开始着手写这本书的时候,最新版本是1.9。Neo4j 2.0版本是真正的规则颠覆者,引进了新的特性,包括非常期待的(内置)节点标签的概念。因此本书尽管还有一些与1.x相关的内容,但是已经更新到涵盖了2.0的特色,所有相关的样例代码和例子都已经专门经过了2.0版本的验证。到本书出版时无疑还会有新的版本,然而,本书所采取的深思熟虑的一步一步的方法,应该为你提供了学习、起步和运行任意的核心Neo4j 2.0+版本的基础知识和技能,当然,除了没有预见的巨大变化。
由于Java是促使Neo4j诞生的语言,因此我们决定使用Java作为主要的语言以演示本书的各种技术和方法。此外,这在以前也是唯一一种可用语言,语言的选择也使我们能够包括一些章节详细讨论如何明确地利用本机核心Neo4j API的优点来做某些工作。这当然对基于Java的客户端是具有很大好处的。然而,如果我们重新从头开始,我们可能会花更多时间来讲Cypher,因为Cypher与图形数据库交互更加容易,且是跨平台的,包括Java、Shell等其他所有平台。然而,我们将这个留作可能的第2版,因为我们仍然相信本书中有许多核心基本概念和方法需要首先传达。本书假设使用的是最新版本的JDK 7。另外,本书附带的样例代码使用Maven作为我们创建依赖工具的选择。对于那些不熟悉Maven的用户,附录B中提供了一个快速入门帮助你起步与进入正常运行。
应当指出的是,这并不意味着本书只是一本参考书。如果是那样的话,本书的篇幅将会长很多。本书的目标是给你足够的知识并理解每一个希望精通的领域,然后再继续向前。如果你想进一步探索特定的领域,书中提供了相关内容的链接,在那里你可以得到更多的相关信息。
本书章节编排本书分为三部分。第一部分介绍并且涵盖数据模型、Neo4j入门和强大的遍历功能。第二部分讨论应用程序的开发并且涵盖Cypher和Spring。第三部分讨论产品实例。
第1章介绍图形数据库的通用概念,包括浏览Neo4j的一些重要方面和最适合的应用场景。该章介绍Neo4j在NoSQL领域中能解决的一些问题,包括与传统关系数据库的对比。
第2章考察如何及为什么在Neo4j中建模数据,包括在图形数据库中数据建模场景的通用方法。给出了来自不同领域的例子,让你了解在Neo4j中建模的灵活性。
从第3章我们真正开始动手了。该章介绍Neo4j核心Java API,通过创建一个表示用户社交网络和他们喜欢的电影的图形的所有步骤来加深理解。该章涵盖创建和连接节点以及获取这些节点的附加信息。该章也探讨区分不同类型节点的策略,包括标签的使用。
第4章建立这个社交网络的域,更深入地探讨核心API,尤其是重点探讨遍历功能(这里讲的是Neo4j遍历API),这是一个查询图形数据库的强大方法。
第5章介绍Neo4j中可用的索引策略。创建和遍历图形数据是非常棒的,但是你需要一个找到起始点或多个起始点的策略,起始点是图形中开始遍历的点。在查看从Neo4j 2.0版本往后可用的内置索引选项前,你将从查看手动(传统)索引开始。
第6章介绍Cypher,即Neo4j中人能读懂的查询语言。这一章介绍Cypher的性质,演示对图形操作的基本句法,也涵盖在Neo4j数据库的日常开发和维护中会用到的高级特性。
第7章重点讨论在NoSQL空间中Neo4j的独特亮点之一——完全支持ACID事务,提供一些不同应用的例子以及在某些方面更深入的探究。
虽然从第4章开始接触遍历功能,但编写高效的遍历是成功查询图形数据的关键。在第8章,我们更深入地挖掘遍历API的内部方法,因此你可以学习到如何以一个有效的方式用本机API解决最复杂的图形问题。
第9章讨论面向图形对象的库Spring Data Neo4j(SDN)。尽管SDN不是Neo4j官方提供的,但是该章通过介绍SDN来重点演示Neo4j开源框架如何作为一个库去提供丰富的对象图形模型和Neo4j支持的数据之间进行可靠的、无缝的映射。该章再一次使用我们信任的用户及其所爱电影的社交网络来演示这些要点。
第10章探讨在Neo4j中使用的两种主要模式,即嵌入式模式和服务器模式,本书主要讲解嵌入式模式的核心概念。该章也介绍了服务器模式,服务器模式可以被任何的客户端使用,并稍微深入地探讨每一种模式,比较各自的优缺点,包括如果你选择的是服务器模式的话,如何充分利用服务器。
第11章介绍高级Neo4j架构。以该知识为框架,该章探讨当你准备将Neo4j投入到产品中时应该考虑哪些因素,包括扩展和其他使Neo4j高可用性的需求,以及当需要时如何备份和还原你的数据库。
四个附录指导你完成安装、设置和运行Neo4j,还包括Maven和SDN以及提供寻求更多帮助的信息。
代码约定和下载本书的所有源代码以代码体形式给出。在许多程序中,以注释的形式指出关键的概念,在文本中有时用编号给出有关代码的附加信息。
书中给出的大部分代码能够在随带的样例源代码中以多种形式找到。样例源代码可以从华章网站(www.hzbook.com)上免费下载。
样例源代码以一组JUnit样式的测试结构给出,其目的是强调或演示讨论中的特定代码。附录B给出了如何运行这些样例源代码的说明。
致谢本书的编写经历了相当长的一段时间,因此,首先和最应该感谢的是我们所有的家人和朋友,他们不知疲倦地与我们在一起、忍受着我们,并且在深夜给我们准备咖啡以便我们能保持旺盛的精力。谢谢你们!
首先,我们要感谢Open Credo,这是我们在写本书时工作的公司,给我们提供了能够在本书中分享经验的机会——大都是利用工作之余的时间,但是,也占用到非常宝贵的工作时间。这是非常令人感激的!
特别要感谢Neo4j的朋友们,英国的Jim Webber和Ian Robinson、德国的Michael Hunger和整个朋友圈,他们不断地为Neo4j工作,但最重要的是他们的有价值评论和反馈帮助我们深入细致恰当地修改本书。非常感谢英国的朋友在我们遇到一些“有趣”的挑战时提供的指导。
感谢我们的编辑Karen Miller,感谢她这段时间的耐心和理解,加上整个Manning团队的积极工作,使我们最终完成本书。这是一项艰苦的工作,非常感谢他们的支持和指导,使本书顺利出版。
感谢我们的读者,他们在作者的在线论坛发布了修正和评论。感谢下面的相关人员,他们在开发期间阅读了我们的手稿并提供了宝贵的意见:Adam Frankl、Bill LaPrise、Brian Gyss、Christoph Jasinski、Frank Uzzolino、Fred Patton、Janeen Johnson、John D. Lewis、Joshua White、Mark Watson、Philippe Lamote、Pouria Amirian、Rikke Willer、Robert Gimbel、Rod Hilton和Stephen Kitt。
还要感谢Jim Webber和Ian Robinson,他们为本书写了序言。还有Craig Taverner,是他作为技术顾问在出版前又阅读了一遍本书的手稿和例子的代码。
还有其他许多以不同的方式做出贡献的人。我们无法通过名字提及每一个人,因为那样意味着这个致谢的篇幅将非常长,但是我们想要深挚地感谢曾经给过我们帮助使得本书得以出版的每一个人。


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