Utility Helpers Utility Helpers Utility helpers are used to perform minor, optional tasks. Use this reference list to discover what each handlebars he ...
分类:
其他好文 时间:
2019-12-23 00:36:24
阅读次数:
145
垃圾回收算法 1.标记清除 标记-清除算法将垃圾回收分为两个阶段:标记阶段和清除阶段。 在标记阶段首先通过根节点(GC Roots),标记所有从根节点开始的对象,未被标记的对象就是未被引用的垃圾对象。然后,在清除阶段,清除所有未被标记的对象。 适用场合: 存活对象较多的情况下比较高效 适用于年老代( ...
分类:
编程语言 时间:
2019-12-23 00:31:31
阅读次数:
83
Content Collections Content Collections Collections are the backbone of how posts on a Ghost site are organised, as well as what URLs they live on. Yo ...
分类:
其他好文 时间:
2019-12-23 00:22:55
阅读次数:
132
JVM内存调优 对JVM内存的系统级的调优主要的目的是减少GC的频率和Full GC的次数。 1.Full GC 会对整个堆进行整理,包括Young、Tenured和Perm。Full GC因为需要对整个堆进行回收,所以比较慢,因此应该尽可能减少Full GC的次数。 2.导致Full GC的原因 ...
分类:
编程语言 时间:
2019-12-23 00:16:17
阅读次数:
239
Further Reading Further Reading Where you go from here is up to you, the world is your router1 Ghost's dynamic routing system is an extremely powerful ...
分类:
其他好文 时间:
2019-12-23 00:15:50
阅读次数:
115
Channels Channels If you want something more flexible than taxonomies, but less rigid than collections, then channels might be for you. A channel is a ...
分类:
其他好文 时间:
2019-12-23 00:15:34
阅读次数:
105
Content Taxonomies Content Taxonomies Taxonomies are groupings of posts based on a common relation. In Ghost, this is always defined by the post's aut ...
分类:
其他好文 时间:
2019-12-23 00:11:21
阅读次数:
88
Responsive Images Responsive Images Optimise the performance of your site by outputting images at different sizes depending on where they appear Overv ...
分类:
其他好文 时间:
2019-12-23 00:09:03
阅读次数:
88
Data Helpers Data Helpers Data helpers are used to output data from your site. Use this reference list to discover what each handlebars helper can do ...
分类:
其他好文 时间:
2019-12-22 22:59:27
阅读次数:
193
Index Index Use: {{#is "index"}}{{/is}} to detect this context. 使用:{{#is "index"}}{{/is}}来检测这个上下文。 Description描述 index is the name for the main post l ...
分类:
其他好文 时间:
2019-12-22 18:34:21
阅读次数:
160