- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在使用一个数据库,并且有一种情况我想关闭其中的一个特性。关闭该功能看起来像这样......
DatabaseContext.Advanced.UseOptimisticConcurrency = false;
开启它同样简单。这功能很好。但我对某些东西很好奇,想探索它......
是否可以像处理 dispose 和 unsafe 那样将其包装在“using” block 中?例如……
using(DatabaseContext.Advanced.UseOptimisticConcurrency = false){
// do things!
}
// the feature is turned back on automatically here!
在 StackOverflow 的优秀人员的帮助下,我现在已经使我想要的行为完美运行。再次感谢。这是我的工作代码。不要介意冗长的文档。我只是那种把脑子里的所有东西都输入出来的程序员。
using System;
namespace Raven.Client {
/// <summary>
/// Used to emulate a series of transactions without optimistic concurrency in RavenDB
/// </summary>
/// <remarks>
/// This has been flagged as an 'abuse' of the IDisposable interface, which is something I will learn more about
/// and try to find a better solution. The purpose of this class is to make absolutely sure that we never use
/// a document session without optimistic concurrency unless we are completely certain it is what we want. I
/// elected to wrap this in a disposable block because that is an easy convention to remember, and it makes the
/// intention very clear to the others who may see this code.
/// Topics[0]: http://stackoverflow.com/questions/19643266/custom-using-blocks
/// Topics[1]: http://stackoverflow.com/questions/2101524/is-it-abusive-to-use-idisposable-and-using-as-a-means-for-getting-scoped-beha/2103158#2103158
/// Topics[2]: http://stackoverflow.com/questions/538060/proper-use-of-the-idisposable-interface
/// </remarks>
public class RavenPessimistic : IDisposable {
private readonly IDocumentSession RavenSession;
/// <summary>
/// Disable optimistic concurrency for this exact session only.
/// </summary>
/// <param name="session"></param>
public RavenPessimistic(IDocumentSession session) {
RavenSession = session;
RavenSession.Advanced.UseOptimisticConcurrency = false;
}
/// <summary>
/// Enable the optimistic concurrency again, so that we do not
/// ever use it unintentionally
/// </summary>
public void Dispose() {
RavenSession.Advanced.UseOptimisticConcurrency = true;
}
}
/// <summary>
/// An extension method to make it more convenient to get to this. This is probably not necessary, but I have been
/// anxious to see how RavenDB handles extension methods.
/// </summary>
public static class RavenSessionExtensions {
public static RavenPessimistic OpenPessimisticSession(this IDocumentSession documentSession) {
return new RavenPessimistic(documentSession);
}
}
}
然后,在我的实际代码中...
/// <summary>
/// Edit the given item prototype.
/// </summary>
/// <param name="model">
/// A unique prototype to edit in the database.
/// </param>
/// <returns></returns>
[HttpPost]
[Route("items/edit/prototype")]
public JsonResult Prototype(Models.Items.Prototype model) {
if (ModelState.IsValid) {
// go through the prototype and make sure to set all of the
// mutation names to it.
foreach (var mutation in model.Mutations) {
mutation.Name = model.Name;
}
// we are updating an entry, instead of creating a new one,
// so temporarily turn off optimistic concurrency since we
// are 100% sure we want to overwrite the existing document.
using (RavenSession.OpenPessimisticSession()) {
RavenSession.Store(model);
RavenSession.SaveChanges();
}
// if this was successful, then return the result to the client
return Json(true, JsonRequestBehavior.AllowGet);
}
return Json(false, JsonRequestBehavior.AllowGet);
}
最佳答案
只需将其包装在 IDisposable
类中,您就可以恢复 Dispose
函数中的功能。
public class SomeClass : IDisposable
{
public SomeClass()
{
DatabaseContext.Advanced.UseOptimisticConcurrency = false;
}
public void Dispose()
{
DatabaseContext.Advanced.UseOptimisticConcurrency = true;
}
}
以上代码只是示例,您需要根据自己的需要进行调整。
关于c# - 自定义 "using" block ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19643266/
我的 blockly.js 文件中有以下代码 Blockly.Blocks['account_number'] = { // Other type. init: function() {
首先抱歉我的英语不好,我正在开发 Image Splitter 应用程序并且已经完成,但是现在的要求是当图像被分割(分成几 block /chunks)那么图像 block 的每一 block (ch
#value: 消息的返回值,当发送到一个 block 时,是该 block 中最后一句话的值。所以 [ 1 + 2. 3 + 4. ] value 计算结果为 7。我发现有时很难使用。有没有办法显式
我想构建一个包含 3 div 的响应式导航栏相同的 width和 height . 我申请了 inline-block到每个 block ,我得到一个我不理解的行为。 问题是,第三 block 由 2
我希望使用 Blockly 来允许非技术人员用户指定测试脚本。 它的一部分需要一个文件选择器,但是,我看不到 Blockly 有一个。是吗? 实际上,我找不到完整的标准 block 列表。谁有网址?
仅当您位于父 block 内部时,父 block 的 props.isSelected 才为 true,但当您在该 block 的 innerBlocks 内进行编辑时则不然。 如何从父 block
仅当您位于父 block 内部时,父 block 的 props.isSelected 才为 true,但当您在该 block 的 innerBlocks 内进行编辑时则不然。 如何从父 block
我想创建一个具有不同背景颜色 block 和不同悬停颜色 block 的导航栏 block 。我可以分别创建不同的悬停颜色 block 或不同的背景颜色 block ,但不能一起创建。所以请告诉我如何
我正在使用看到的代码 here定期执行代码: #define DELAY_IN_MS 1000 __block dispatch_time_t next = dispatch_time(DISPATC
为什么 block 必须被复制而不是保留?两者在引擎盖下有什么区别?在什么情况下不需要复制 block (如果有)? 最佳答案 通常,当您分配一个类的实例时,它会进入堆并一直存在,直到它被释放。但是,
我想弄清楚我这样做是否正确: 如果我有一个 block ,我会这样做: __weak MyClass *weakSelf = self; [self performBlock:^{
我想制作一个 4 block 导航菜单,虽然我已经显示了一个 block ,然后单击打开第二个 block ,从第二个开始选择并再次单击出现第三个 block ,第四个 block 相同...这是我的
例如,这样更好吗? try { synchronized (bean) { // Write something } } catch (Int
我想让一只乌龟检查前方小块的颜色并决定移动到哪里。如果前面的补丁不是白色的,那么乌龟向左或向右旋转并移动。我的 If 决策结构中出现错误,显示“此处应为 TRUE?FALSE,而不是 block 列表
我想创建一个 block 对角矩阵,其中对角 block 重复一定次数,非对角 block 都是零矩阵。例如,假设我们从一个矩阵开始: > diag.matrix [,1] [,2] [
我是区 block 链新手。突然我有一个问题,我们是否可以通过区 block 号来访问以太坊区 block 链上之前的区 block 数据。 例如我创建了一个block1、block2。 block
我是区 block 链新手。突然我有一个问题,我们是否可以通过区 block 号来访问以太坊区 block 链上之前的区 block 数据。 例如我创建了一个block1、block2。 block
我创建了一个等距环境,全部使用 Javascript 和 HTML5 (2D Canvas),大部分情况下工作正常。我面临的问题是使用不同高度的图 block ,然后对图 block 上的对象索引进行
这是令我困惑的代码: public Integer getInteger(BlockingQueue queue) { boolean interrupted = false; try
我有一个基于 TPL 数据流的应用程序,它仅使用批处理 block 和操作 block 就可以正常工作。 我已经添加了一个 TransformBlock 以尝试在发布到批处理 block 之前从源中转
我是一名优秀的程序员,十分优秀!