码迷,mamicode.com
首页 >  
搜索关键字:incr    ( 1027个结果
mysql
数据库 -- 1.创建数据库(在磁盘上创建一个对应的文件夹) create database [if not exists] db_name [character set xxx] -- 2.查看数据库 show databases;查看所有数据库 show create database db_n ...
分类:数据库   时间:2020-04-03 13:48:57    阅读次数:72
CF 1012C Dp
Welcome to Innopolis city. Throughout the whole year, Innopolis citizens suffer from everlasting city construction. From the window in your room, you ...
分类:其他好文   时间:2020-04-01 13:15:04    阅读次数:83
Make k Equal from Codeforces Round #629 (Div. 3)
description you are given an array and you are asked to make $k$ elements of it equal after some operations. you can make one of the following operati ...
分类:其他好文   时间:2020-03-28 20:20:02    阅读次数:99
MySQL设置自增初始值和步长
MySQL设置自增初始值和步长 我们可以通过:SHOW VARIABLES LIKE 'auto_inc%'; 查看当前数据库的自增长设置。 auto_increment_increment这是自增长的步长。 auto_increment_offset这是自增长开始的值。‘ 现在想要更改test表的 ...
分类:数据库   时间:2020-03-27 10:58:57    阅读次数:221
03 redis与spring的整合
本文将阐述如何把redis与spring集成。 1、前提约束 可以使用java调用redis服务 https://www.jianshu.com/p/83ef8a80508d 2、修改pom.xml 在pom.xml中加入以下依赖: 3、加入接口JeditClient.java 4、完成接口的实现 ...
分类:编程语言   时间:2020-03-26 21:25:54    阅读次数:55
redis分布式锁解决超卖问题
1.1 redis事物 1、redis事物介绍 1. redis事物是可以一次执行多个命令,本质是一组命令的集合。 2. 一个事务中的所有命令都会序列化,按顺序串行化的执行而不会被其他命令插入 作用:一个队列中,一次性、顺序性、排他性的执行一系列命令 2、multi 指令基本使用 1. 下面指令演示 ...
分类:其他好文   时间:2020-03-24 00:49:19    阅读次数:83
SSM整合搭建(二)
本页来衔接上一页继续来搭建SSM,再提一下大家如果不详细可以再去看视频哦,B站就有 之后我们来配置SpringMVC的配置文件,主要是配置跳转的逻辑 先扫描所有的业务逻辑组件 我们要用SpringMVC去扫描包 那么就应该先去建立包 我们给SpringMVC设置扫描仅仅是Controller的包 并 ...
分类:其他好文   时间:2020-03-22 13:48:02    阅读次数:101
Laravel belongsTo 详解
前提:订单表(order)和用户表(user) 表结构: order CREATE TABLE `order` ( `id` char(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '订单号', `user_id` bigint ...
分类:其他好文   时间:2020-03-15 16:25:11    阅读次数:90
Embedded Vision question
01 IFQ-Net: Integrated Fixed-point Quantization Networks for Embedded Vision (1911.08076) In this paper, we propose a fixed-point networkfor embedded ...
分类:其他好文   时间:2020-03-15 09:37:45    阅读次数:54
线程间通信 生产者、消费者虚假唤醒
线程通信中要预防虚假唤醒 注意(在哪里停就在哪里启动) class shareDataOne{ private int number = 0; public synchronized void incr() throws InterruptedException { if(number != 0){ ...
分类:编程语言   时间:2020-03-14 20:31:47    阅读次数:73
1027条   上一页 1 ... 10 11 12 13 14 ... 103 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!