上一页 1 ··· 8 9 10 11 12 13 14 下一页
摘要: 线性规划 全局QoS优化 本文要解决的问题很明白, 基于QoS的Web服务选择(在Web服务组合的场景中), 这是Web服务组合领域内的一个基本问题. 如果只考虑Web服务的一个属性, 显然组合中每个task只要选择最优的WS, 组合起来也肯定是最优的; 但是在WS具有多属性(price, duration, reliability等)的情况下, 不同的QoS属性在组合结构(比如同步等)中具有不同的计算方法, 无法通过局部最优解来获得全局最优解. 阅读全文
posted @ 2009-02-24 16:19 玉泉老博 阅读(1817) 评论(1) 推荐(0) 编辑
摘要: 本来想反思一下这几年的经历, 做过的选择, 总结得失. 回顾良久, 感觉很难下笔, 还是多向前看, 在现在的基础上继续努力. 阅读全文
posted @ 2009-02-21 19:42 玉泉老博 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 北京邮电大学网络与交换技术国家重点实验室 State Key Laboratory Of Networking And Switching Technology, Beijing University Of Posts And Telecommunications 这个研究中心发表了很多Web服务领域里面的论文, 根据其主页介绍, 这个中心的研究方向包括下一代网络、新一代互联网服务、网络智能化、分布式计算、开放的业务生成环境、语义化Web服务、智能信息提取技术、移动业务网络和新一代智能网, 自1993年起,在国内率先开展智能网研究, 承担了包括7项国家自然科学基金项目、5项国家高技术研究发展计划(863计划)项目. 阅读全文
posted @ 2009-02-21 15:27 玉泉老博 阅读(2646) 评论(0) 推荐(0) 编辑
摘要: 在Ei里搜(((genetic) WN KY) AND ((web service) WN TI)) (标题里含有web service, suject/title/abstract里含genetic), 共有51条记录, 其中中国有31篇, 美国欧洲很少. 论文数最多的是北京邮电大学的Zhang, Chengwen(张成文)(共6篇);从时间上来看, 2008(12), 2007(17), 2006(8), 2005(7), 之前几年较少, 2009年目前只有1篇, 照这个数据来看, 遗传算法在web服务方向应用的研究(或者说是出论文)应该还有潜力可挖). 在isi web of science搜索"标题=(web service) AND 主题=(genetic)", 排除无关记录, 剩下的有12条记录. 阅读全文
posted @ 2009-02-21 10:38 玉泉老博 阅读(1222) 评论(8) 推荐(0) 编辑
摘要: 关于这篇论文, 文章要解决的是那个无数论文讨论过的问题: QoS-aware Service Composition, 使用的方法包括Integer Programming, case-based reasoning和genetic algorithms, 提出了一个系统CSMS(Composite Service Managerment System). 本文的主要思想: 接收到用户的请求后, 首先从CBR repository中寻找匹配的execution plan, 如果找不到, 就用IP方法来求解, 并将得到的解存入repository中, 以便下次重用. 这样可以提高服务组合的效率, 降低成本.为了解决QoS动态变化导致与现实不符的问题, 应用遗传算法来选择现有解决方案. 阅读全文
posted @ 2009-02-20 17:01 玉泉老博 阅读(630) 评论(3) 推荐(0) 编辑
摘要: 时隔两年, 重新启用这个博客. 手机版地址: http://m.cnblogs.com/?u=ykt 阅读全文
posted @ 2009-02-20 16:09 玉泉老博 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 标题里虽然是将Database Design的best practice, 但下面内容并不仅限于design阶段的良好习惯。1. Should binary files (such as word, pdf, image, video) bestored in database?(1) performance. 根据[2], blobcolumn并不是储存在datarow中,datarow中只是包... 阅读全文
posted @ 2007-01-19 13:59 玉泉老博 阅读(641) 评论(0) 推荐(0) 编辑
摘要: 1.View只是存储下来的sql 语句Views are nothingbut saved SQL statements, and are sometimes referred as “Virtual Tables”.Keep in mind that Views cannot store data (except for Indexed Views); ratherthe... 阅读全文
posted @ 2007-01-19 10:21 玉泉老博 阅读(11408) 评论(0) 推荐(0) 编辑
摘要: SQL Server DO's and DONT'shttp://www.codeproject.com/cs/database/sqldodont.asp1. 性能问题一般在确实发生时才去优化。但是应该要有针对大量数据的测试来发现潜在的性能问题。因为一开始设计时很难确定在实际环境中性能瓶颈会在何处发生,除非非常明显,否则不要在设计时就去优化“可能”存在的性能问题。2. T... 阅读全文
posted @ 2007-01-19 10:15 玉泉老博 阅读(330) 评论(0) 推荐(0) 编辑
摘要: 1. 字符串操作更容易出错。2. sql语句不可避免地出现在代码里,无法坐到代码与数据分离.代码可读性降低。3. 效率. 很多情况下需要多次执行同一句sql语句,只是参数不同.如果使用PreparedStatement(Java),只需要在第一次执行是编译sql语句,之后的执行效率可以提高。4. 如果代码里使用字符串操作来拼接sql语句,那么在编译阶段是不可能发现sql语句错误的.如果使用类库提供... 阅读全文
posted @ 2007-01-19 10:11 玉泉老博 阅读(2635) 评论(0) 推荐(0) 编辑
摘要: 1. The job of the primary key is touniquely identify records, not to store business data ; any use ofbusiness data in a primary key is a dangerous practice, since anychanges to such data will have lar... 阅读全文
posted @ 2007-01-19 10:11 玉泉老博 阅读(348) 评论(0) 推荐(0) 编辑
摘要: Essential Code to Use Regular Expression inC#using System;using System.Text.RegularExpressions; Regex phoneExp = new Regex(@"^\(\d{3}\)\s\d{3}-\d{4}$"); stringinput; Console.Write("Enter a phone numbe... 阅读全文
posted @ 2007-01-17 16:36 玉泉老博 阅读(1863) 评论(0) 推荐(0) 编辑
摘要: System.IO.Compression是.Net 2.0里与压缩有关的命名空间,但是使用起来并不是很方便。使用第3方库ziplib可以很方便地进行压缩类的操作。 从[1]下载动态库,然后在工程里Add Reference,把ICSharpCode.SharpZipLib.dll加进去。 在代码来创建一个zip包的例子如下(摘自ziplib sample code) usingICSharpCo... 阅读全文
posted @ 2007-01-17 16:23 玉泉老博 阅读(1671) 评论(0) 推荐(1) 编辑
摘要: #region lets you specify a block of code that you can expand or collapse when using the outlining feature of the Visual Studio Code Editor.与代码逻辑无关.Example// preprocessor_region.cs#region MyClass defin... 阅读全文
posted @ 2007-01-17 16:17 玉泉老博 阅读(619) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections;namespace Project1{ class ListSystemProperties { static void Main() { System.Console.WriteLine("\tKey\t\t\tValue"); foreach (DictionaryEntry enValue in Environmen... 阅读全文
posted @ 2007-01-17 16:16 玉泉老博 阅读(1640) 评论(0) 推荐(0) 编辑
摘要: http://www.ondotnet.com/pub/a/dotnet/2001/06/14/csharp_4_java.html1. 简单类型C#中的primitive type也是object的子类,因此可以直接调用ToString 或 GetType。 如Int是System.Int32的假名,后者继承了System.Object 注意:C#中简单类型仍然是pass-by-value2. ... 阅读全文
posted @ 2007-01-17 16:15 玉泉老博 阅读(327) 评论(0) 推荐(0) 编辑
摘要: 7 Ontology Engineering7.1 Introduction7.2 Constructing Ontologies Manually1. main stages in the ontology development process(1). Determine scope Developing an ontology is akin to defining a set of dat... 阅读全文
posted @ 2007-01-17 14:25 玉泉老博 阅读(550) 评论(0) 推荐(0) 编辑
摘要: 6 Applications6.1 Introduction6.2 Horizontal Information Products at Elsevier1. vertical product产品分为传统的类别(如物理,生物,计算机等),每种产品都属于其中一个类别(或一个类别中的一部分)2. horizontal product给定一个话题,找到跟这个话题有关的所有文章(这些文章可能不是在同一个类... 阅读全文
posted @ 2007-01-16 21:02 玉泉老博 阅读(381) 评论(0) 推荐(0) 编辑
摘要: WSAD/RAD用习惯了,对VS里的快捷键很不习惯,先修改几个最常用的:Tools->Options->Keyboard在VS2008里是 Tools->Options->Environment->KeyboardEdit.FindNextSelected: remove old & assign it with "F3"Edit.FindPreviousSe... 阅读全文
posted @ 2007-01-16 13:36 玉泉老博 阅读(263) 评论(0) 推荐(0) 编辑
摘要: when I try and run a .ASPX files(website application) it gives me an error "Unable to start program 'C:\Progra~1\Mozil~1\Firefox.exe'. The system cannot find the path specified." 阅读全文
posted @ 2007-01-16 13:34 玉泉老博 阅读(258) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 下一页
Free counter and web stats