oracle intro

Oracle Database,又名 Oracle RDBMS,简称 Oracle。
Oracle 数据库系统是美国 Oracle 公司(甲骨文)提供的以分布式数据库为核心的一组软件产品,
是目前最流行的客户/服务器(client/server)或B/S体系结构的数据库之一,比如 SilverStream 就是基于数据库的一种中间件。
Oracle 数据库是目前世界上使用最为广泛的数据库管理系统,作为一个通用的数据库系统,它具有完整的数据管理功能;
作为一个关系型数据库,它是一个完备关系的产品;作为分布式数据库它实现了分布式处理功能,只要在一种机型上学习了 操作Oracle 的知识,便能在各种类型的机器上使用它。

阅读更多

java

序号 内容 链接地址
1 Java基础知识面试题(2020最新版) https://thinkwon.blog.csdn.net/article/details/104390612

2 Java集合容器面试题(2020最新版) https://thinkwon.blog.csdn.net/article/details/104588551

3 Java异常面试题(2020最新版) https://thinkwon.blog.csdn.net/article/details/104390689

4 并发编程面试题(2020最新版) https://thinkwon.blog.csdn.net/article/details/104863992

5 JVM面试题(2020最新版) https://thinkwon.blog.csdn.net/article/details/104390752

6 Spring面试题(2020最新版) https://thinkwon.blog.csdn.net/article/details/104397516

7 Spring MVC面试题(2020最新版) https://thinkwon.blog.csdn.net/article/details/104397427

8 Spring Boot面试题(2020最新版) https://thinkwon.blog.csdn.net/article/details/104397299

9 Spring Cloud面试题(2020最新版) https://thinkwon.blog.csdn.net/article/details/104397367

10 MyBatis面试题(2020最新版) https://thinkwon.blog.csdn.net/article/details/101292950

11 Redis面试题(2020最新版) https://thinkwon.blog.csdn.net/article/details/103522351

12 MySQL数据库面试题(2020最新版) https://thinkwon.blog.csdn.net/article/details/104778621

13 消息中间件MQ与RabbitMQ面试题(2020最新版) https://thinkwon.blog.csdn.net/article/details/104588612

14 Dubbo面试题(2020最新版) https://thinkwon.blog.csdn.net/article/details/104390006

15 Linux面试题(2020最新版) https://thinkwon.blog.csdn.net/article/details/104588679

16 Tomcat面试题(2020最新版) https://thinkwon.blog.csdn.net/article/details/104397665

17 ZooKeeper面试题(2020最新版) https://thinkwon.blog.csdn.net/article/details/104397719

18 Netty面试题(2020最新版) https://thinkwon.blog.csdn.net/article/details/104391081

19 架构设计&分布式&数据结构与算法面试题(2020最新版) https://thinkwon.blog.csdn.net/article/details/105870730

java redis2

Redis 的数据类型有哪些

字符串(strings)、哈希(hashes)、列表(lists)、集合(sets)、有序集合(sorted sets)等,
除此之外还支持 bitmaps、hyperloglogs 和地理空间( geospatial )索引半径查询等功能。

阅读更多

spring-data-redis jedis

1
2
3
4
5
6
7
8
9
10
11
12
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
<version>2.3.3.RELEASE</version>
</dependency>

<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>3.3.0</version>
<type>jar</type>
</dependency>
阅读更多

lettuce

1
2
3
4
5
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<version>2.3.3.RELEASE</version>
</dependency>
阅读更多