当前位置: 首页 > news >正文

影视公司名字seo网络推广优势

影视公司名字,seo网络推广优势,python爬虫做网站,云南文山州Elasticsearch 1. 关于各种数据库的使用 关于MySQL:是关系型数据库,能清楚的表示数据之间的关系,并且,是基于磁盘存储的,可以使用相对较低的成本存储大量的数据 关于Redis:是基于K-V结构的在内存中读写数…

Elasticsearch

1. 关于各种数据库的使用

关于MySQL:是关系型数据库,能清楚的表示数据之间的关系,并且,是基于磁盘存储的,可以使用相对较低的成本存储大量的数据

关于Redis:是基于K-V结构的在内存中读写数据的数据库(虽然也会自动同步到磁盘),能够明显的提高查询效率(通常设计预期不低于10万QPS),进而还可以保护关系型数据库,并且,通常是使用专门的服务器或集群,也可以作为整个集群中的共享内存资源

关于elasticsearch:用于解决搜索问题的非关系型文档数据库

2. 关系型数据库中的索引

在关系型数据库中,索引(index)是一种单独的、物理层面的对数据库中的一列或多列的值进行排序检索的一种数据结构。

如果没有做任何优化的处理,当MySQL这类数据库中的数据量较多时,查询效率会非常低下,这是因为在执行查询时,MySQL会把当前表中所有的数据全部检查一遍,检查每条数据是否匹配当前的查询规则!另外,MySQL是基于磁盘存储的,数据不会非常整齐的集中存储在磁盘的某个位置,而是散列的分布的磁盘的不同位置,例如:

在这里插入图片描述

所以,在查询时,会需要频繁的执行IO操作,最终,实际表现查询效率非常低!

在MySQL中,创建索引的简单语法是:

CREATE INDEX index_name ON table_name (column_name[, column_name_2 ...]);

例如:

CREATE INDEX idx_username ON account_user (username);

对于某张表的某个字段的索引,只需要创建1次即可!

当创建索引后,索引对应的列的查询效率都可以在毫秒级完成!

注意:在创建索引时,表中的数据越多,创建索引的耗时越多!

删除索引的语法格式是:

DROP INDEX index_name ON table_name;

例如:

DROP INDEX idx_username ON account_user;

在创建索引时,MySQL会将对应字段的数据进行排序,并在索引中记录下每条数据的位置信息,所以,索引就相当于是“书的目录”,后续,当需要查询时,会先翻“书的目录”,找出数据对应的“页码”,并直接翻到对应的那一页,就能把数据全部找出来!所以,整体效率非常之高!

索引的本质是一种B+Tree结构(是一种树型结构)的数据,在MySQL中,InnoDB存储引擎中页的大小是16KB,如果使用BIGINT类型的主键,每个主键需要占用8字节,在B+Tree中的指针是4~8字节,每个指针与主键形成一个节点,则每个节点将占用最多16字节,每页最少可以存储1024个节点,深度为3的B+Tree最多可以存储1024 * 1024 * 1024个节点,大约是1000 * 1000 * 1000 = 1000000000个节点(10亿),所以,每个B+Tree可以维护约10亿个节点,如果表中的数据量不超过10亿条,都只需要最多执行3次IO操作,就可以找出数据的位置。

在数据库,即使你没有显式的创建索引,某些字段的查询效率可能也非常高,因为索引还有其它种类,包括:

  • PRIMARY KEY:主键索引
  • UNIQUE:唯一索引
  • INDEX:普通索引
  • FULLTEXT:全文索引

基于索引的特性,使用时,必须注意:

  • 索引不会包含有NULL值的列
  • 数据量非常少的表没有必要创建索引,例如绝大部分字典表,或数据量不多且修改频率也非常低的表也没有必要创建索引,例如资讯平台的“栏目”或“类别”、小型应用中“用户的角色”
  • 数据经常变化的字段不要创建索引,因为会频繁的更新索引,导致更新效率低下
  • 查询时需要计算字段值时,索引是无效的,例如:where age + 10 > 30时,age列的索引是无效的
  • 左侧的模糊查询无法使用索引,因为索引是基于对这一列的数据进行排序得到的
    • 其实,在开发实践中,所有模糊查询都是不允许使用的

除了以上限制以外,不同的企业的开发规范可能提出更高的要求:

  • 类型为text的字段不允许使用索引
  • 类型为varchar且字段值可能很长的字段,也不允许使用索引
  • 其它

3. 安装与启动elasticsearch

无论是哪个操作系统,只需要下载elasticsearch的压缩包即可,将其解压,执行bin目录下的elasticsearch即可启动elasticsearch服务:

在这里插入图片描述

启动成功后,看到的结果大致是:

在这里插入图片描述

在使用elasticsearch的过程中,以上窗口不可以关闭!

启动成功后,你可以通过浏览器访问 http://localhost:9200,结果如下:

在这里插入图片描述

4. 访问elasticsearch

elasticsearch提供的访问方式是基于RESTful的,你可以使用任何一个可以提交REST请求的工具来访问elasticsearch,例如常见的测试工具PostMan等。

在IntelliJ IDEA中,你可以创建以.http为扩展名的HttpRequest文件,通过这类文件来提交REST请求,例如:

在这里插入图片描述

然后,在文件中编写请求:

在这里插入图片描述

直接点击请求左侧的绿色小箭头即可发起请求,执行效果如下:

在这里插入图片描述

5. 使用elasticsearch分词

向 http://localhost:9200/_analyze 提交请求即可分词,请求参数必须是名为text的,参数值就是你希望分词的词组或词句,例如:

在这里插入图片描述

在同一个.http文件中,可以编写多个请求,但是,后续的请求的代码必须使用 ### 和前序的请求分开,不能只使用1个 #

也可以对中文进行分词,但是,默认的分词对中文的支持非常不好,它只会将每个汉字作为一个词!

示例代码:

### 简单的分词:中文
GET http://localhost:9200/_analyze
Content-Type: application/json{"text": "很高兴认识你!"
}

可以在elasticsearch中安装插件,以更好的支持中文的分词,经典的中文分词插件就是ik分词器。

你只需要找到elasticsearch文件夹下的plugins文件夹(如下图所示):

在这里插入图片描述

然后,将IK分词器的文件夹粘贴到plugins的子级即可,并且,你可以自由的修改IK分词器文件夹的名称,例如:

在这里插入图片描述

以上配置完成后,需要重启elasticsearch才会应用新的分词器!

接下来,在提交请求时,可以在请求参数列表中添加analyzer参数,取值可以是IK分词器中的ik_smartik_max_word,例如:

### 使用IK的分词:智能
GET http://localhost:9200/_analyze
Content-Type: application/json{"analyzer": "ik_smart","text": "很高兴认识你!"
}### 使用IK的分词:最大词量(最细粒度)
GET http://localhost:9200/_analyze
Content-Type: application/json{"analyzer": "ik_max_word","text": "很高兴认识你!"
}

使用IK分词器时,还可以自造词!

在这里插入图片描述

6. elasticsearch文档的相关概念

索引(index / indices)

  • 相当于MySQL中的Database

类型(type / types)

  • 相当于MySQL中的Table,可以自行创建“类型”,或,如果不关心“类型”,则使用_doc表示类型名

文档(document / documents)

  • 相当于MySQL中的一行行的数据,在elasticsearch中每个数据都是由JSON格式组织的

字段(field / fields)

  • 相当于MySQL中的Column

7. 使用elasticsearch添加数据

7.1. 添加文档

添加文档(使用elasticsearch随机生成的ID)

请求URL的格式:

POST http://localhost:9200/{索引名}/{类型名}

提示:添加文档时,如果索引不存在,会自动创建索引;如果类型不存在,会自动创建类型!

请求示例:

### 添加文档(新增数据),将随机生成此数据在ES中的ID
POST http://localhost:9200/index_crud/_doc
Content-Type: application/json{"id": 1,"title": "这是放在ES中的第1篇文章","sort": 80,"gmtCreate": "2023-07-01"
}

添加文档(新增数据),并自行指定ID

请求URL的格式(此处对ID值并没有严格的要求):

PUT http://localhost:9200/{索引名}/{类型名}/{文档ID}

请求示例:

### 添加文档(新增数据),并自行指定ID,此处对ID值并没有严格的要求
PUT http://localhost:9200/index_crud/_doc/No9527
Content-Type: application/json{"id": 9527,"title": "这是放在ES中的第2篇文章","sort": 90,"gmtCreate": "2023-07-02"
}

7.2. 查看文档

查看当前索引中的所有文档

请求URL的格式:

GET http://localhost:9200/{索引名}/_search

请求示例:

### 查看当前索引中的所有文档
GET http://localhost:9200/index_crud/_search

根据ID访问文档

请求URL的格式:

GET http://localhost:9200/{索引名}/_doc/{文档ID}

提示:如果是elasticsearch自动生成的ID,你可以通过“查看所有文档”来获取ID值,或者,此前添加文档时,返回的结果中也会包含ID值。

请求示例:

### 根据ID访问文档(此前添加文档时使用的自定义ID)
GET http://localhost:9200/index_crud/_doc/No9527

7.3. 修改文档

修改文档【1】

请求URL的格式:

PUT http://localhost:9200/{索引名}/_doc/{文档ID}

提示:以上请求与“指定ID的添加文档”是相同的!

注意:此类操作会使用请求参数替换原有的整个数据,如果原数据有5个属性,请求参数只有2个属性,执行后,数据将只有本次请求的2个属性!

请求示例:

PUT http://localhost:9200/index_crud/_doc/No9527
Content-Type: application/json{"id": 9527,"title": "这是放在ES中的第2篇文章","sort": 90,"gmtCreate": "2023-07-02"
}

修改文档【2】

请求URL的格式:

POST http://localhost:9200/{索引名}/_doc/{文档ID}/_update

提示:这种修改文档的方式只会修改原数据中与本次请求参数对应的属性

注意:如果原数据中没有本次请求的参数属性,则会在原数据上添加新的属性!

请求示例:

POST http://localhost:9200/index_crud/_doc/No9527/_update
Content-Type: application/json{"doc": {"commentCount": 637}
}

7.4. 删除

根据ID删除文档

请求URL的格式:

DELETE http://localhost:9200/{索引名}/{类型名}/{文档ID}

注意:如果尝试删除的文档不存在,则会响应404错误!

请求示例:

DELETE http://localhost:9200/index_crud/_doc/No9527

删除整个索引

请求URL的格式:

DELETE http://localhost:9200/{索引名}

注意:将会删除这个索引中的所有类型及各类型中的数据!

注意:如果尝试删除的索引不存在,则会响应404错误!

请求示例:

DELETE http://localhost:9200/index_crud

8. elasitcsearch中的字段的数据类型

在elasticsearch中,文档的各个字段都是有数据类型的,大致有:

  • 字符串类型:textkeyword
    • text类型被处理时,默认会被分词
      • 默认类型
    • keyword类型被处理时,默认不会被分词
  • 数值类型:byteshortintegerlongfloatdouble
  • 布尔类型:boolean
  • 日期类型:date
  • 二进制类型:binary
  • 其它(可参考org.springframework.data.elasticsearch.annotations.FieldType的枚举值)

当向elasticsearch中添加文档时,如果对应的索引没有设置数据类型,则会自动设置数据类型!

可以查询索引信息,来观察各字段的数据类型!请求URL的格式为:

### 查看索引的基本信息
GET http://localhost:9200/{索引名}

请求示例:

### 查看索引的基本信息
GET http://localhost:9200/index_search

也可以专门的创建索引,并在创建时指定各字段的数据类型,请求方式大致是:

PUT http://localhost:9200/{索引名}
Content-Type: application/json{"mappings": {"properties": {"{字段名1}": {"type": "{数据类型1}"},"{字段名2}": {"type": "{数据类型2}"},..."{字段名n}": {"type": "{数据类型n}"}}}
}

请求示例:

### 创建索引,并配置各字段的数据类型
PUT http://localhost:9200/index_search
Content-Type: application/json{"mappings": {"properties": {"id": {"type": "long"},"title": {"type": "text"},"desc": {"type": "keyword"},"sort": {"type": "integer"},"price": {"type": "integer"}}}
}

9. 搜索

9.1. 准备测试数据

预计的测试数据是:

idtitledescsortprice
1散装龙井性价比之王150200
2龙井礼盒套装超值套装160668
3新上架铁观音新茶上市120370
4武夷大红袍经典红茶150988
5茉莉花茶小清新190120

将以上测试数据存入到名为index_search索引中,则代码为:

### 添加测试数据-1
PUT http://localhost:9200/index_search/_doc/1
Content-Type: application/json{"id": 1,"title": "散装龙井","desc": "性价比之王","sort": 150,"price": 200
}### 添加测试数据-2
PUT http://localhost:9200/index_search/_doc/2
Content-Type: application/json{"id": 2,"title": "龙井礼盒套装","desc": "超值套装","sort": 160,"price": 668
}### 添加测试数据-3
PUT http://localhost:9200/index_search/_doc/3
Content-Type: application/json{"id":3,"title": "新上架铁观音","desc": "新茶上市","sort": 120,"price": 370
}### 添加测试数据-4
PUT http://localhost:9200/index_search/_doc/4
Content-Type: application/json{"id": 4,"title": "武夷大红袍","desc": "经典红茶","sort": 150,"price": 988
}### 添加测试数据-5
PUT http://localhost:9200/index_search/_doc/5
Content-Type: application/json{"id": 5,"title": "茉莉花茶","desc": "小清新","sort": 190,"price": 120
}

9.2. 简单的搜索

请求URL的格式:

GET http://localhost:9200/{索引名}/_search?q={字段名:关键字}

注意:执行以上搜索时,会自动对关键字进行分词,例如,关键是“套装”时,“散装”也会出现在结果中,因为会对“套装”进行分词,得到“套装”、“套”、“装”这些词,而“散装”也包含了“装”,所以,会出现在结果中!

请求示例:

### 搜索:按照title的“套装”进行搜索
GET http://localhost:9200/index_search/_search?q=title:套装### 搜索:按照desc的“红茶”进行搜索
GET http://localhost:9200/index_search/_search?q=desc:红茶

注意:执行以上搜索时,如果搜索的字段是text类型,会自动对关键词进行分词,如果字段是keyword,则不会分词,仅有完全匹配的数据才会被搜索到!

9.3. 高级搜索

### 搜索:简单的自定义query搜索,如果不写query,相当于SQL里没有where,则搜索全部数据,或者,将match部分配置为:"match_all": {}
GET http://localhost:9200/index_search/_search
Content-Type: application/json{"query": {"match": {"title": "套装"}}
}### 搜索:多个条件的搜索,must >>> AND / should >>> OR / must_not >>> !=
GET http://localhost:9200/index_search/_search
Content-Type: application/json{"query": {"bool": {"must": [{"match": {"title": "套装"}},{"match": {"desc": "超值套装"}}]}}
}### 搜索:指定查询字段列表的搜索
GET http://localhost:9200/index_search/_search
Content-Type: application/json{"query": {"match_all": {}},"_source": ["id","title","price"]
}### 搜索:指定排序规则的搜索,通过与query同级的sort属性来配置规则,如果希望升序,则字段的属性为空对象即可
GET http://localhost:9200/index_search/_search
Content-Type: application/json{"query": {"match_all": {}},"sort": [{"price": {},"id": {"order": "desc"}}]
}### 搜索:分页搜索,通过与query同级的from属性表示从第几条开始,0表示第1条,以此类推,另外再通过size属性表示搜索多少条数据
GET http://localhost:9200/index_search/_search
Content-Type: application/json{"query": {"match_all": {}},"from": 2,"size": 2
}### 搜索:高亮显示,通过与query同级的highlight标签进行配置,会在搜索结果中生成与数据结果同级的highlight对象,默认会在匹配的文本上添加em标签
GET http://localhost:9200/index_search/_search
Content-Type: application/json{"query": {"match": {"title": "套装"}},"highlight": {"fields": {"title": {}},"pre_tags": "<font style='color: red;'>","post_tags": "</font>"}
}

10. 基于Spring Boot的elasticsearch编程

10.1. 添加依赖

<!-- Spring Boot支持elasticsearch编程的依赖项 -->
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-elasticsearch</artifactId>
</dependency>

10.2. 处理文档数据

在基于Spring Data Elasticsearch的开发时,需要在存入/读取时使用的数据类型上添加相关注解:

  • @Document:添加在类上,通过此注解的indexName属性配置此类数据在elasticsearch中的索引名称
  • @Id:添加在类中被作为主键的属性上,表示此属性的值将作为数据在elasticsearch中的ID
  • @Field:添加在类中不被作为主键的属性上,此注解并不是必须的,即使没有在属性上添加此注解进行配置,后续框架和elasticsearch也能自动处理数据类型,重点考虑那些会被用于搜索匹配的属性,特别是字符串类型的,到底配置为@Field(type = FieldType.Text)还是@Field(type = FieldType.Keyword)

示例:

package cn.tedu.tea.admin.server.content.pojo.vo.search;import lombok.Data;
import org.springframework.data.annotation.Id;
import org.springframework.data.elasticsearch.annotations.DateFormat;
import org.springframework.data.elasticsearch.annotations.Document;
import org.springframework.data.elasticsearch.annotations.Field;
import org.springframework.data.elasticsearch.annotations.FieldType;import java.io.Serializable;
import java.time.LocalDateTime;/*** 用于处理搜索功能的文章数据的VO类** @author java@tedu.cn* @version 1.0*/
@Data
@Document(indexName = "article") // http://localhost:9200/article
public class ArticleSearchVO implements Serializable {/*** 数据ID*/@Idprivate Long id;/*** 作者ID*/private Long authorId;/*** 作者名字*/private String authorName;/*** 标题*/@Field(type = FieldType.Text, analyzer = "ik_smart", searchAnalyzer = "ik_smart")private String title;/*** 摘要*/@Field(type = FieldType.Text, analyzer = "ik_smart", searchAnalyzer = "ik_smart")private String brief;/*** 排序序号*/private Integer sort;/*** 封面图*/private String coverUrl;/*** 顶数量*/private Integer upCount;/*** 踩数量*/private Integer downCount;/*** 浏览量*/private Integer clickCount;/*** 评论量*/private Integer commentCount;/*** 数据创建时间*/@Field(type = FieldType.Date, format = {}, pattern = "yyyy-MM-dd HH:mm:ss")private LocalDateTime gmtCreate;/*** 数据最后修改时间*/@Field(type = FieldType.Date, format = {}, pattern = "yyyy-MM-dd HH:mm:ss")private LocalDateTime gmtModified;}

10.3. 编写数据访问接口

在基于Spring Boot的项目中,添加了spring-boot-starter-data-elasticsearch后,当需要处理elasticsearch编程时,只需要自定义接口,实现Spring Data框架中的Repository接口即可,实现接口时必须指定2个泛型,第1个是文档对应数据类型,第2个是主键的数据类型,例如:

public interface IArticleSearchRepository extends Repository<ArticleSearchVO, Long> {
}

然后在接口中定义抽象方法即可:

package cn.tedu.tea.front.server.content.dao.search;import cn.tedu.tea.admin.server.content.pojo.vo.search.ArticleSearchVO;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.elasticsearch.annotations.Highlight;
import org.springframework.data.elasticsearch.annotations.HighlightField;
import org.springframework.data.elasticsearch.annotations.HighlightParameters;
import org.springframework.data.elasticsearch.annotations.Query;
import org.springframework.data.elasticsearch.core.SearchHits;
import org.springframework.data.elasticsearch.core.SearchPage;
import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;
import org.springframework.stereotype.Repository;import java.util.List;// https://docs.spring.io/spring-data/elasticsearch/docs/4.2.1/reference/html/#reference
@Repository
public interface IArticleSearchRepositoryextends ElasticsearchRepository<ArticleSearchVO, Long> {// 关于抽象方法的返回值:// - List<T>:基础的搜索// - SearchHits<T>:搜索时包含其它信息,例如高亮等// - Page<T>:分页搜索// 注意:以上分页搜索不可以包含其它信息,而SearchHits搜索不可以分页// 如果既需要分页,又需要包含高亮等其它信息,需要使用以下返回值类型:// - SearchPage<T>// 分页查询// -- 必须在方法的参数列表的最后位置添加Pageable类型的参数,表示分页参数// -- -- 可以通过PageRequest.of(page, size)方法得到Pageable对象,其中,page是以0开始顺序编号的页码值// -- 方法的返回结果类型必须是Page类型的/*** 【可以高亮显示关键字,也可以分页】根据关键字搜索文章标题** @param title 搜索时的关键字* @return 与关键字匹配的文章的列表*/// 如果不按要求设计抽象方法名称,则必须添加@Query注解来配置搜索规则@Highlight(fields = {@HighlightField(name = "title")}, parameters = @HighlightParameters(preTags = "<font color=red>", postTags = "</font>"))@Query("{\n" +"    \"bool\": {\n" +"      \"must\": [\n" +"        {\n" +"          \"match\": {\n" +"            \"title\": \"?0\"\n" +"          }\n" +"        },\n" +"        {\n" +"          \"match\": {\n" +"            \"brief\": \"?1\"\n" +"          }\n" +"        }\n" +"      ]\n" +"    }\n" +"  }")SearchPage<ArticleSearchVO> xxx(String title, String brief, Pageable pageable);// SearchPage<ArticleSearchVO> queryByTitle(String title, Pageable pageable);//    /**
//     * 【无法高亮显示关键字,无法分页】根据关键字搜索文章标题
//     *
//     * @param title 搜索时的关键字
//     * @return 与关键字匹配的文章的列表
//     */
//    List<ArticleSearchVO> queryByTitle(String title);//    /**
//     * 【无法高亮显示关键字,可以分页】根据关键字搜索文章标题
//     *
//     * @param title 搜索时的关键字
//     * @return 与关键字匹配的文章的列表
//     */
//    Page<ArticleSearchVO> queryByTitle(String title, Pageable pageable);//    @Highlight(fields = {
//            @HighlightField(name = "title")
//    }, parameters = @HighlightParameters(
//            preTags = "<font color=red>", postTags = "</font>"))
//    /**
//     * 【可以高亮显示关键字,无法分页】根据关键字搜索文章标题
//     *
//     * @param title 搜索时的关键字
//     * @return 与关键字匹配的文章的列表
//     */
//    SearchHits<ArticleSearchVO> queryByTitle(String title);}

文章转载自:
http://pipa.wwxg.cn
http://restrictive.wwxg.cn
http://nailbrush.wwxg.cn
http://paragenesia.wwxg.cn
http://candescence.wwxg.cn
http://heir.wwxg.cn
http://mercy.wwxg.cn
http://froze.wwxg.cn
http://sizy.wwxg.cn
http://ramark.wwxg.cn
http://cranage.wwxg.cn
http://competence.wwxg.cn
http://drily.wwxg.cn
http://matrilateral.wwxg.cn
http://woolding.wwxg.cn
http://nosophobia.wwxg.cn
http://disprovable.wwxg.cn
http://clippie.wwxg.cn
http://volkspele.wwxg.cn
http://bicyclist.wwxg.cn
http://chromoplast.wwxg.cn
http://witchweed.wwxg.cn
http://diametical.wwxg.cn
http://tumidly.wwxg.cn
http://mote.wwxg.cn
http://timesaving.wwxg.cn
http://conciliative.wwxg.cn
http://figurative.wwxg.cn
http://claribel.wwxg.cn
http://twimc.wwxg.cn
http://flintily.wwxg.cn
http://checkback.wwxg.cn
http://preserve.wwxg.cn
http://yech.wwxg.cn
http://unbearably.wwxg.cn
http://proprioception.wwxg.cn
http://piranha.wwxg.cn
http://tricorn.wwxg.cn
http://pejorative.wwxg.cn
http://nocturne.wwxg.cn
http://carney.wwxg.cn
http://accomplish.wwxg.cn
http://trustbuster.wwxg.cn
http://brenner.wwxg.cn
http://tabulate.wwxg.cn
http://artificially.wwxg.cn
http://indology.wwxg.cn
http://theolatry.wwxg.cn
http://pentangular.wwxg.cn
http://ignitor.wwxg.cn
http://defy.wwxg.cn
http://brice.wwxg.cn
http://weekender.wwxg.cn
http://acoustic.wwxg.cn
http://crosswalk.wwxg.cn
http://hadal.wwxg.cn
http://expectative.wwxg.cn
http://healthwise.wwxg.cn
http://arrowwood.wwxg.cn
http://hematoblast.wwxg.cn
http://yesternight.wwxg.cn
http://katalase.wwxg.cn
http://baal.wwxg.cn
http://zygosperm.wwxg.cn
http://odorize.wwxg.cn
http://resulting.wwxg.cn
http://opopanax.wwxg.cn
http://snackery.wwxg.cn
http://handclap.wwxg.cn
http://flashhouse.wwxg.cn
http://tuesday.wwxg.cn
http://uncouth.wwxg.cn
http://reprehensibly.wwxg.cn
http://revaluation.wwxg.cn
http://clicker.wwxg.cn
http://antheridium.wwxg.cn
http://dumpishly.wwxg.cn
http://ceiling.wwxg.cn
http://bedsonia.wwxg.cn
http://gorgonize.wwxg.cn
http://injuriously.wwxg.cn
http://augmented.wwxg.cn
http://comprehensive.wwxg.cn
http://kythera.wwxg.cn
http://artillerist.wwxg.cn
http://incoming.wwxg.cn
http://leze.wwxg.cn
http://subdivision.wwxg.cn
http://unbarbered.wwxg.cn
http://argive.wwxg.cn
http://throuther.wwxg.cn
http://unreservedly.wwxg.cn
http://samlo.wwxg.cn
http://quaalude.wwxg.cn
http://fellowless.wwxg.cn
http://keratoid.wwxg.cn
http://conscriptive.wwxg.cn
http://aeonian.wwxg.cn
http://giocoso.wwxg.cn
http://rubberize.wwxg.cn
http://www.hrbkazy.com/news/71648.html

相关文章:

  • 哪个网站能接施工图来做爱站数据
  • asp.net企业网站管理系统seo外包优化服务商
  • 北京网站建设定制外贸推广是做什么的
  • 做淘宝用什么批发网站推广代运营公司
  • java做网站用什么工具线上推广公司
  • 网站新闻标题标题怎样进行优化seo收费还是免费
  • 一个做外汇的网站叫熊猫什么的新闻最新消息今天
  • 三合一网站建设 万网西安网站seo排名优化
  • 成都网站建设的费用企业网站模板建站
  • 酒店网站建设研究全网整合营销外包
  • 网站建设评价量规新浪体育最新消息
  • 网站开发人员趋势网络营销策略方案
  • 天津网站建设培训学校付费推广有几种方式
  • 青海省网站建设哪家公司比较靠谱品牌宣传策略
  • 网站图片尺寸八八网
  • 无锡网站排名提升seo人员工作内容
  • 布吉网站建设技术托管哪个搜索引擎最好
  • 建网站用什么系统好谷歌竞价推广教程
  • 中国志愿者服务网站登录注册网上销售都有哪些平台
  • 山东网站空间最佳的资源磁力搜索引擎
  • 网站被别人做镜像seo关键词优化案例
  • java做网站程序郑州网站seo优化
  • 做外贸的怎样才能上国外网站网站页面设计模板
  • 用腾讯云做网站的好处百度下载app下载安装到手机
  • 做电商海报的网站青岛神马排名优化
  • 网上购物哪个平台质量好亚马逊seo什么意思
  • 商务网站开发前期项目费用预算网络营销专员的就业前景
  • 学生求职网站的需求分析怎么做宜兴百度推广
  • 找人做网站多少钱磁力宝最佳搜索引擎入口
  • 建网站价格百度竞价和优化的区别