txf

Alternatives to using Transactional NTFS

旧街凉风 提交于 2020-01-29 13:31:08
问题 Given that Microsoft has deprecated Transactional NTFS (TxF): Microsoft strongly recommends developers utilize alternative means to achieve your application’s needs. Many scenarios that TxF was developed for can be achieved through simpler and more readily available techniques. Furthermore, TxF may not be available in future versions of Microsoft Windows. While TxF is a powerful set of APIs, there has been extremely limited developer interest in this API platform since Windows Vista primarily

.net durable resource manager for transactional filesystem access

白昼怎懂夜的黑 提交于 2019-12-18 05:56:08
问题 I'm trying to wrap my head around the use of the System.Transactions namespace in C#. I've found some documentation on MSDN regarding using resource managers, but it only covers volatile, in-memory resource managers in any detail (like Transactional ). I'm basically looking for something that I can use inside of a TransactionScope, just like Transactional<> but use it for writing/modifying/deleting files on disk. Does something like this exist in the standard libs? I've read that NTFS has

Vista Phantom Directory

依然范特西╮ 提交于 2019-12-11 01:32:40
问题 We have a program that the installer checks for the existence of a config file, and if it exists, it doesn't copy that file over (it assumes the user has modified their config file and wants to keep those modifications). Unfortunately, this is a pre-Vista application and it keeps the config file in Program Files. The problem is, if you manually wipe out the directory when it re-installs certain API still thinks that there is a directory there. VB6, for example, and its browse for file dialog

Alternatives to using Transactional NTFS

纵饮孤独 提交于 2019-12-01 06:33:08
Given that Microsoft has deprecated Transactional NTFS (TxF) : Microsoft strongly recommends developers utilize alternative means to achieve your application’s needs. Many scenarios that TxF was developed for can be achieved through simpler and more readily available techniques. Furthermore, TxF may not be available in future versions of Microsoft Windows. While TxF is a powerful set of APIs, there has been extremely limited developer interest in this API platform since Windows Vista primarily due to its complexity and various nuances which developers need to consider as part of application

Any real-world, enterprise-grade experience with Transactional NTFS (TxF)?

拈花ヽ惹草 提交于 2019-11-30 13:45:45
问题 Background: I am aware of this SO question about Transactional NTFS (TxF) and this article describing how to use it, but I am looking for real-world experience with a reasonably high-volume enterprise system where lots of blob data (say documents and/or photos) need to be persisted once transactionally and read many times . We are expecting a few tens of thousands of documents written per day and reads of several tens of thousands per hour. We could either store indexes within the file system

Any real-world, enterprise-grade experience with Transactional NTFS (TxF)?

强颜欢笑 提交于 2019-11-30 08:22:34
Background: I am aware of this SO question about Transactional NTFS (TxF) and this article describing how to use it, but I am looking for real-world experience with a reasonably high-volume enterprise system where lots of blob data (say documents and/or photos) need to be persisted once transactionally and read many times . We are expecting a few tens of thousands of documents written per day and reads of several tens of thousands per hour. We could either store indexes within the file system or in SQL Server but must be able to scale this out over several boxes. We must retain the ability to

.net durable resource manager for transactional filesystem access

喜夏-厌秋 提交于 2019-11-29 10:28:16
I'm trying to wrap my head around the use of the System.Transactions namespace in C#. I've found some documentation on MSDN regarding using resource managers, but it only covers volatile, in-memory resource managers in any detail (like Transactional ). I'm basically looking for something that I can use inside of a TransactionScope, just like Transactional<> but use it for writing/modifying/deleting files on disk. Does something like this exist in the standard libs? I've read that NTFS has "TxF" now to allow transactional filesystem access - I was expecting to find something in .net that