上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 35 下一页
摘要: Access and Authentication There are three access levels to the Marketing APIs. You can upgrade access after you meet criteria described later. Note th 阅读全文
posted @ 2018-04-02 13:03 PanPan003 阅读(677) 评论(0) 推荐(0) 编辑
摘要: The Ads Insights API provides API access for reporting and analytics purposes. When exclusively using the Ad Insights API, request the ads_read permis 阅读全文
posted @ 2018-04-02 12:29 PanPan003 阅读(1006) 评论(0) 推荐(0) 编辑
摘要: Ad Ad Contains information to display an ad and associate it an ad set. Each ad is associated with an ad set and all ads in a set have the same daily 阅读全文
posted @ 2018-04-02 12:03 PanPan003 阅读(1049) 评论(0) 推荐(0) 编辑
摘要: General information on the Marketing APIs, access, versioning and more. The main use cases for the Marketing API are ads insights, audience management 阅读全文
posted @ 2018-04-02 11:30 PanPan003 阅读(1303) 评论(0) 推荐(0) 编辑
摘要: Business-scoped Users - The new user is tied to a particular business and has permissions scoped to this business. Users can manage their profile, per 阅读全文
posted @ 2018-04-02 11:24 PanPan003 阅读(1373) 评论(0) 推荐(0) 编辑
摘要: Druid的发送数据和查询数据 Druid 开篇 - 大数据实时探索性分析平台 官网 Druid 一次海量数据实时处理的实践 使用HDFS作为Druid的deepStorage 在哪里下载druid 正式版本下载:maven中央仓库: http://central.maven.org/maven2/ 阅读全文
posted @ 2018-03-30 18:53 PanPan003 阅读(421) 评论(0) 推荐(0) 编辑
摘要: Druid (大数据实时统计分析数据存储) Druid 是一个为在大数据集之上做实时统计分析而设计的开源数据存储。这个系统集合了一个面向列存储的层,一个分布式、shared-nothing的架构,和一个高级的索引结构,来达成在秒级以内对十亿行级别的表进行任意的探索分析。 1. 介绍 在最近几年,互联 阅读全文
posted @ 2018-03-30 18:05 PanPan003 阅读(3734) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-03-30 16:30 PanPan003 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 在向数据库批量导入数据时,可以参考此过程 1、对于现有的Excel文件,首先应另存为 .csv文件,记住分割符(逗号分割),在后边导入用到。 2、用记事本打开保存后的csv文件,以utf-8格式另存为文件。不执行此编码格式,会在后续导入报错 。 ERROR: invalid byte sequenc 阅读全文
posted @ 2018-03-30 12:19 PanPan003 阅读(8294) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-03-30 11:14 PanPan003 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-03-27 10:35 PanPan003 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 利用C#实现AOP常见的几种方法详解 AOP面向切面编程(Aspect Oriented Programming) 是通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术。 下面这篇文章主要给大家介绍了关于利用C#实现AOP常见的几种方法,需要的朋友可以参考借鉴,下面来一起看看吧。 前言 阅读全文
posted @ 2018-03-21 15:56 PanPan003 阅读(16055) 评论(3) 推荐(6) 编辑
摘要: IoC容器和Dependency Injection 模式 使用 Service Locator 依赖注入的最大好处在于:它消除了MovieLister类对具体 MovieFinder实现类的依赖。 这样 一来,我就可以把 MovieLister 类交给朋友,让他们根据自己的环境插入一个合适的 Mo 阅读全文
posted @ 2018-03-19 18:52 PanPan003 阅读(299) 评论(0) 推荐(0) 编辑
摘要: IoC容器和Dependency Injection 模式 Java 社群近来掀起了一阵轻量级容器的热潮,这些容器能够帮助开发者将来自不同项目的组件组装成为一个内聚的应用程序。 在它们的背后有着同一个模式,这个模式决定了这些容器进行组件装配的方式。 人们用一个大而化之的名字来称呼这个模式:“控制反转 阅读全文
posted @ 2018-03-19 18:41 PanPan003 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 了解Entity Framework中事务处理 Entity Framework 6以前,框架本身并没有提供显式的事务处理方案,在EF6中提供了事务处理的API。 所有版本的EF,只要你调用SaveChanges方法进行插入、修改或删除,EF框架会自动将该操作进行事务包装。这种方法无法对事务进行显式 阅读全文
posted @ 2018-03-19 17:25 PanPan003 阅读(506) 评论(0) 推荐(0) 编辑
摘要: 5. 事务状态 TransactionInformation 上面讲解过事务分为本地事务与分布式事务,而Transaction类的TransactionInformation是事务状态的记录,它可以跟踪事务动作,分辨事务现处的状态,记录本地事务与分布式事务的Guid。 TransactionInfo 阅读全文
posted @ 2018-03-19 15:55 PanPan003 阅读(178) 评论(0) 推荐(0) 编辑
摘要: SqlTransaction——事务详解 事务是将一系列操作作为一个单元执行,要么成功,要么失败,回滚到最初状态。在事务处理术语中,事务要么提交,要么中止。若要提交事务,所有参与者都必须保证对数据的任何更改是永久的。不论系统崩溃或是发生其他无法预料的事件,更改都必须是持久的。只要有一个参与者无法做出 阅读全文
posted @ 2018-03-19 15:24 PanPan003 阅读(385) 评论(0) 推荐(0) 编辑
摘要: public class EntityConfigurationException : Exception { public EntityConfigurationException(string message) : base(message) { } } /// /// *****异常 ... 阅读全文
posted @ 2018-03-19 14:16 PanPan003 阅读(292) 评论(0) 推荐(0) 编辑
摘要: Entity Framework 是一种支持 .NET 开发人员使用 .NET 对象处理数据库的对象关系映射程序 (O/RM)。 它不要求提供开发人员通常需要编写的大部分数据访问代码。 Entity Framework Core 简要概述 Entity Framework (EF) Core 是轻量 阅读全文
posted @ 2018-03-19 13:46 PanPan003 阅读(694) 评论(0) 推荐(0) 编辑
摘要: 原文链接 This database provider allows Entity Framework Core to be used with SQLite. The provider is maintained as part of the Entity Framework Core proje 阅读全文
posted @ 2018-03-19 11:58 PanPan003 阅读(1091) 评论(0) 推荐(0) 编辑
摘要: 原文链接 This can be useful for testing, although the SQLite provider in in-memory mode may be a more appropriate test replacement for relational database 阅读全文
posted @ 2018-03-19 11:13 PanPan003 阅读(1595) 评论(0) 推荐(0) 编辑
摘要: dll引用: NLog.Targets.ElasticSearch,版本:4.0.0-beta26 Nlog,版本:4.5.0-rc04 Microsoft.Extensions.Configuration,版本:2.0.0 appsettings.json(属性=》复制到输出目录:始终复制),El 阅读全文
posted @ 2018-03-16 16:28 PanPan003 阅读(1589) 评论(0) 推荐(0) 编辑
摘要: .net core 项目 可以向excel写入任何类型(T)的数据,只要T中的field的[Display(Name = "1233", Description = "#,##0.00")]:name==excel column header's name ,dicription==excel ce 阅读全文
posted @ 2018-03-16 16:01 PanPan003 阅读(2378) 评论(0) 推荐(0) 编辑
摘要: Elasticsearch,Kibana,Logstash,NLog实现ASP.NET Core 分布式日志系统 Elasticsearch 官方网站 Elasticsearch文档 NLog.Targets.ElasticSearch package Elasticsearch - 简介 Elas 阅读全文
posted @ 2018-03-12 11:58 PanPan003 阅读(1035) 评论(2) 推荐(3) 编辑
摘要: ElasticSearch+NLog+Elmah实现Asp.Net分布式日志管理 ElasticSearch简介 ElasticSearch是一个基于Lucene的搜索服务器。 它提供了一个分布式多用户能力的全文搜索引擎,基于RESTful web接口。 Elasticsearch是用Java开发的 阅读全文
posted @ 2018-03-12 11:39 PanPan003 阅读(493) 评论(0) 推荐(0) 编辑
摘要: 魔方清理大师 “清理大师”-》清理界面 一键清理=》开始扫描=》立刻清理 注册表清理=》开始扫描=》立刻清理 深度清理=》开始扫描=》立刻清理 C:\Users\用户名\AppData 里面一般有三个文件夹,分别是Local,LocalLow,Roaming,简单地来说,都是用来存放软件的配置文件和 阅读全文
posted @ 2018-03-09 13:59 PanPan003 阅读(1752) 评论(0) 推荐(0) 编辑
摘要: 转自: https://www.ithome.com/html/win10/297093.htm http://blog.csdn.net/w763613202/article/details/69334954 第一步:下载离线安装包 https://www.visualstudio.com/zh- 阅读全文
posted @ 2018-03-09 11:07 PanPan003 阅读(11370) 评论(0) 推荐(0) 编辑
摘要: cmd中执行命令 powershell中执行命令: 阅读全文
posted @ 2018-03-05 19:51 PanPan003 阅读(628) 评论(0) 推荐(0) 编辑
摘要: Create .NET Standard packages with Visual Studio 2015 Publishing packages nuge.exe 放在项目目录中 nuspec修改示例: <?xml version="1.0"?><package > <metadata> <id> 阅读全文
posted @ 2018-03-01 15:46 PanPan003 阅读(374) 评论(0) 推荐(0) 编辑
摘要: 使用Redis做预定库存缓存功能 缓存是在业务层做的,准确讲应该是在MVC模型中Model的ORM里面 PHP项目的缓存从以前的APC缓存逐渐切换到Redis中,并且根据Redis所支持的数据结构做了库存维护功能 主要逻辑就是先查缓存,查不到的话再查数据库。 库存管理方案(Redis) Redis支 阅读全文
posted @ 2018-02-28 15:09 PanPan003 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 高可用Redis服务架构分析与搭建 各种web开发业务中最为常用的key-value数据库了 应用: 在业务中用其存储用户登陆态(Session存储),加速一些热数据的查询(相比较mysql而言,速度有数量级的提升),做简单的消息队列(LPUSH和BRPOP)、订阅发布(PUB/SUB)系统等等。 阅读全文
posted @ 2018-02-28 15:08 PanPan003 阅读(10821) 评论(0) 推荐(0) 编辑
摘要: .ps1文件是PowerShell写好的脚本文件 可以在记事本中写一段PowerShell代码,然后将其保存为“xxx.ps1”,后面要使用它的时候,双击即可运行了。这有点像批处理的“.bat”文件,也有点像VBScript的“.vbs”文件。这些都是Windows的脚本文件。 在线教程 Power 阅读全文
posted @ 2018-02-27 21:53 PanPan003 阅读(4310) 评论(0) 推荐(0) 编辑
摘要: docker build -t dvm.adsplatformproxy:v1.0.0 . #build images docker run -e WWNamespace=dev -e ZKServerAddress=****** -p 6000:80 6cb913a34ae3 #run conta 阅读全文
posted @ 2018-02-26 13:01 PanPan003 阅读(1266) 评论(0) 推荐(0) 编辑
摘要: 5 Ways to Build Routing in ASP.NET Core Bundling in .NET Core MVC Applications with BundlerMinifier.Core Bundling and minification:微软文档 Bundling and M 阅读全文
posted @ 2018-01-26 11:34 PanPan003 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 安装包:点击此处 Docker for Windows Get started with Docker for Windows 环境设值: Shared Drivers:可以将主机(也就是Windows机器)中的驱动器共享到Docker Container中 Advanced:用于配置运行Docke 阅读全文
posted @ 2018-01-25 19:15 PanPan003 阅读(765) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-01-25 17:20 PanPan003 阅读(351) 评论(0) 推荐(0) 编辑
摘要: Elasticsearch: 权威指南 官方文档:https://www.elastic.co/guide/en/elasticsearch/reference/current/settings.html 参考文档:https://github.com/13428282016/elasticsear 阅读全文
posted @ 2018-01-25 15:59 PanPan003 阅读(1499) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-01-25 15:22 PanPan003 阅读(6716) 评论(0) 推荐(0) 编辑
摘要: 1.项目生成xml 2.添加链接文件,并将属性设值为始终复制 3.添加swagger引用:Swashbuckle.AspNetCore 4.startup.cs配置swargger的xml来源: ConfigureServices方法添加: services.AddMvc(); services.A 阅读全文
posted @ 2018-01-24 15:28 PanPan003 阅读(374) 评论(0) 推荐(0) 编辑
摘要: http request:put 外部传参 外部调用 http request :get json data : list 阅读全文
posted @ 2018-01-09 18:21 PanPan003 阅读(294) 评论(0) 推荐(0) 编辑
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 35 下一页