码迷,mamicode.com
首页 >  
搜索关键字:index    ( 33545个结果
mysql命令行下创建和删除索引简介
mysql命令行下创建和删除索引简介: mysql中创建索引可以使用CREATE TABLE语句,也可以用CREATE INDEX或ALTER TABLE来给表增加索引。索引的删除可以使用ALTER TABLE或DROP INDEX语句来实现。(1)使用ALTER TABLE语句创建索引。语法如下:...
分类:数据库   时间:2014-04-30 03:35:33    阅读次数:688
django 中的延迟加载技术,python中的lazy技术
---恢复内容开始---说起lazy_object,首先想到的是django orm中的query_set、fn.Stream这两个类。query_set只在需要数据库中的数据的时候才 产生db hits。Stream对象只有在用到index时才会去一次次next。例子: f = Stream(.....
分类:编程语言   时间:2014-04-29 21:27:01    阅读次数:676
瀑布流ajax分页
index.jsp 1 2 3 4 5 6 图片 7 8 9 10 11 12 13 14 15 ...
分类:其他好文   时间:2014-04-29 20:28:33    阅读次数:707
一、java安装
Java Developer Kit的下载 点击下面的地址下载JDK:http://www.oracle.com/technetwork/java/javase/downloads/index.html(注意选择合适的JDK版本)
分类:编程语言   时间:2014-04-29 20:08:02    阅读次数:535
lnmp建站常识
1.nginx配置网站目录并修改访问的端口:nginx.conf文件listen 666;//端口默认为80,修改后增强安全性 server_name www.lnmp.org; index index.html index.htm ind...
分类:其他好文   时间:2014-04-29 19:29:01    阅读次数:450
web.xml格式(避免eclipse更新延迟-3.0版)
Index.jsp struts2 org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter struts...
分类:Web程序   时间:2014-04-29 13:57:27    阅读次数:510
Html.ActionLink(转载)
@Html.ActionLink代码:HtmlHelper@Html.ActionLink("默认","Index")@Html.ActionLink("带控制器", "Index", "RsvpForm")@Html.ActionLink("带默认路由参数", "Index", new {page...
分类:Web程序   时间:2014-04-29 11:13:46    阅读次数:666
找到视图“Page”或其母版视图,或没有视图引擎支持搜索的位置。搜索了以下位置:
将原起始页面View中 Index和 Controller中的HomeController删除后报这样的错误,在global.asax设置好路由后例:public static void RegisterRoutes(RouteCollection routes) { ...
分类:其他好文   时间:2014-04-29 10:38:47    阅读次数:544
[LeetCode] 时间复杂度 O(n),空间复杂度 O(1) 的动态规划算法,题 Jump Game
Jump GameGiven an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents yo...
分类:其他好文   时间:2014-04-28 11:30:27    阅读次数:551
Mysql数据库索引
索引(Index)是帮助mysql高效获取数据的数据结构。对于高性能非常关键。索引的重要性主要体现在数据量非常大的时候。规模小,负载轻的数据库即使没有索引也可以获到好的查询效果例如:1 mysql>select first_name from actor where actor_id=5;改索引列位...
分类:数据库   时间:2014-04-28 06:31:23    阅读次数:959
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!