上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 64 下一页
摘要: MySQL中的事务 数据库事务隔离级别 MySQL 的数据存储引擎 MySQL的索引 聚集索引和非聚集索引区别 MySQL索引失效 乐观锁和悲观锁 MySQL中的内连接、外连接、交叉连接 数据库设计三大范式 慢查询日志和profiling explain的使用 阅读全文
posted @ 2018-01-09 16:25 __Meng 阅读(177) 评论(0) 推荐(0) 编辑
摘要: MySQL的存储引擎 InnoDB: MySQL5.5之后的默认存储引擎。 采用MVCC来支持高并发,并且实现了四个标准的隔离级别(默认可重复读)。 支持事务,支持外键、支持行锁、非锁定读(默认读取操作不会产生锁) 行锁优点是适用于高并发的频繁表修改,高并发是性能优于 MyISAM。缺点是系统消耗较 阅读全文
posted @ 2018-01-09 16:21 __Meng 阅读(222) 评论(0) 推荐(0) 编辑
摘要: Remove all elements from a linked list of integers that have value val. ExampleGiven: 1 --> 2 --> 6 --> 3 --> 4 --> 5 --> 6, val = 6Return: 1 --> 2 -- 阅读全文
posted @ 2018-01-09 10:43 __Meng 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 数据库事务的隔离级别有4个,由低到高依次为Read uncommitted、Read committed、Repeatable read、Serializable 这四个级别可以逐个解决脏读、不可重复读、幻读这几类问题。 READ UNCOMMITTED (未提交读): 事务中的修改,即使没提交,对 阅读全文
posted @ 2018-01-08 11:08 __Meng 阅读(389) 评论(0) 推荐(0) 编辑
摘要: Implement the following operations of a queue using stacks. push(x) -- Push element x to the back of queue. pop() -- Removes the element from in front 阅读全文
posted @ 2018-01-08 10:00 __Meng 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 数据库事务 事务指的是满足 ACID 特性的一系列操作。在数据库中,可以通过 Commit 提交一个事务,也可以使用 Rollback 进行回滚。 在 MySQL 中只有使用了 Innodb 数据库引擎的数据库或表才支持事务。 MYSQL 事务处理主要有两种方法: 1、用 BEGIN, ROLLBA 阅读全文
posted @ 2018-01-06 15:33 __Meng 阅读(331) 评论(0) 推荐(0) 编辑
摘要: You are given a license key represented as a string S which consists only alphanumeric character and dashes. The string is separated into N+1 groups b 阅读全文
posted @ 2018-01-05 10:30 __Meng 阅读(227) 评论(0) 推荐(0) 编辑
摘要: Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. Example: 阅读全文
posted @ 2018-01-02 10:51 __Meng 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 一、线程池概念 线程池: 线程池从字面意思来看,是指管理一组同构工作线程的资源池。 在线程池中执行任务比「为每一个任务分配一个线程」优势更多。 通过重用现有的线程而不是创建新线程,可以在处理多个请求时分摊在线程创建和销毁过程中产生的巨大开销。 另外一个额外的好处是,当请求到达时,工作线程通常已经存在 阅读全文
posted @ 2017-12-31 21:09 __Meng 阅读(362) 评论(0) 推荐(0) 编辑
摘要: Given a sorted linked list, delete all duplicates such that each element appear only once. For example,Given 1->1->2, return 1->2.Given 1->1->2->3->3, 阅读全文
posted @ 2017-12-31 13:37 __Meng 阅读(135) 评论(0) 推荐(0) 编辑
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 64 下一页