27 skills found
bayhaqy / HTML Content ExtractorHTML Content Extractor is a user-friendly web app powered by Streamlit. With it, you can input a URL, retrieve and refine the HTML content from Google's web cache, and save the edited HTML. It also enables you to freely access Medium articles, bypassing member-only restrictions.
dasebe / WebcachesimA C++11 simulator for a variety of CDN caching policies.
fusic-com / Flask WebcacheA Flask extension that adds HTTP based caching to Flask apps
dasebe / AdaptSizeA caching system that maximizes hit ratios under highly variable traffic.
dasebe / OptimalwebcachingDerive the optimal cache hit ratio for Internet request traces with variable object sizes.
Dbz / WebCacheChrome extension to view the cached version of the current webpage
kehengzhong / EjeteJet 是一个轻量级、高性能、嵌入式Web服务器,实现HTTP/1.1全栈功能,包括TLS/SSL、正向代理、反向代理、FastCGI、Cookie、Web Cache、访问日志、HTTP变量、HTTP Script脚本程序、JSon配置文件、虚拟主机、HTTP Location、Rewrite/Try_files等指令、HTTP Tunnel、应用回调和动态库回调等,是超大文件上传下载、网站、PHP、CDN、Web Cache、嵌入式Web等服务的理想平台
cblage / Node CacheliciousSuper-fast Node.js Native Webcache
stechrayo / WebCacheFileNo description available
bibanon / Webcache ScraperThe Bibliotheca Anonoma's own Bing Cache and Google Cache scraper scripts. Unlike most of the other ones you've seen, these actually work.
leocadiotine / WebCachedImageViewSimple library for Android to asynchronously fetch images, cache them and display them on ImageViews.
DannyBen / WebcacheHassle-free caching for HTTP download with ruby
fanliang11 / DCLSystem分布式缓存,实现一致性哈希算法,集成 couchbase,redis,webcache,membercache
akr3ch / DeceptorA simple bash script for Web Cache Deception exploitation.
bocchi-the-cache / Bakemono💾 A cache storage engine implemented in Go
xiaose1205 / HelloDataHelloData分析: 1、HelloData.FrameWork:为数据库底层框架,支持多种数据库操作,加入了BaseEntity与BaseLogic,BaseManager两个有关业务逻辑的继承方式。在数据库生成model的时候使用T4生成, 并且生成的数据库表对应的对象类为部分类(partial),如果需要扩展加入当前对象的多个部分类即可。这样做的好处是将数据库生成 的类与业务间的操作分离。BaseLogic的继承BaseLogic<T>,T为操作数据库表对象的泛型,里面包含的常用的新增,删除,修改,获取一个实体,获取实体list ,BaseManager<T, TU>,T为操作逻辑类,TU为操作逻辑对象类。继承后当前操作逻辑类为全局唯一实例,使用了单一模式,操作方法也是包含了那些常用的逻辑操作。 书写Demo: using (DeleteAction delete = new DeleteAction(Entity)) { delete.SqlWhere(cms_user.Columns.id, "1,2,3,4,5", RelationEnum.In); delete.Excute(); return delete.ReturnCode; }; using (UpdateAction update = new UpdateAction(Entity)) { update.SqlKeyValue(cms_user.Columns.createtime, null); update.SqlKeyValue(cms_user.Columns.password, "123456123"); update.Excute(); return update.ReturnCode; }; using (SelectAction select = new SelectAction(Entity)) { if (!string.IsNullOrEmpty(username)) select.SqlWhere(cms_user.Columns.username, username, RelationEnum.Like, ConditionEnum.Or); select.SqlPageParms(pageSize); return select.QueryPage<cms_user>(pageIndex); }; using (SelectAction action = new SelectAction("")) { action.SqlWhere(cms_user.Columns.username, "admin"); action.SqlWhere(cms_user.Columns.password, "123456"); PageList<cms_user> lists= action.QueryPage<cms_user>(1); return null; } 操作数据库的时候可以加入缓存,缓存现支持webcache,Redis,MemberCache ,后两种可以支持分布式部署操作; 2、HelloData.FWCommon:包含加密解密;导出操作:txt,csv,excel;序列化与反序列化:二进制,json,soap,xml; 其他的常用操作,例如:html操作,socket网络爬虫等。 3、HelloData.FWExtend:这个为开发人员项目操作的,基于HelloData.FrameWork的扩展; 4、HelloData.Web:里面加入url重写,多语言模块,ajax请求类似mvc的操作。 操作demo: function ajaxdemo() { $.ajax({ type: 'POST', url: "ajax/demo/do", data: "{ 'result':{ 'Result':-1,'Message':'不支持GET请求','PostTime':'2012-2-2'},'ido':233}", contentType: "application/json", dataType: "json" }); }
eternita / FrontcacheFrontcache - page fragment cache designed to boost web app performance. It reduces server response time for dynamic pages, reduces load on backend systems multiple times, increases application's resilience. Works as Servlet Filter or Standalone Cache Server.
AngularClass / Angular Web Cached View:page_facing_up: Angular Web Cached View: correctly render Angular in cached views via @AngularClass
Te-k / WebcacheOSINT tool to search or save pages in cache
AntidoteDB / WebCureThis repository consists ongoing work on the following MSc. thesis topic: "Offline caching in web applications for AntidoteDB".