Questions tagged [document-versioning]

22 questions
38
votes
2 answers

How to disable Interface Builder document versioning from auto updating?

This question is still getting a lot of upvotes. So look at Update3. once you have upvoted, commented, answered, please please please file a radar Viewing a nib / xib, modifies the file, forcing me to either commit the change or undo the change.…
Nitin Alabur
  • 5,812
  • 1
  • 34
  • 52
4
votes
1 answer

Adding more properties to existing CQRS Events

We are using NEventStore (the artist formerly known as Jonathan Oliver's EventStore) to store our CQRS events. I would like to know if it is necessary to create a new version of an Event if we wish to add a new property to the Event. I understand…
Sachin
  • 127
  • 9
2
votes
0 answers

MongoDB complex object versioning with Spring Boot

I'm trying to identify the best way to do mongodb object versioning. Based on the mongodb document versioning pattern, storing revisions in a history collection and having current version in main collection is recommended. According to that, each…
Kavindu Vindika
  • 2,449
  • 1
  • 13
  • 20
2
votes
1 answer

MongoDB Aggregation query running very slow

We version most of our collections in Mongodb. The selected versioning mechanism is as follows: { "docId" : 174, "v" : 1, "attr1": 165 } /*version 1 */ { "docId" : 174, "v" : 2, "attr1": 165, "attr2": "A-1" } { "docId" : 174, "v" : 3, …
jbernal
  • 785
  • 1
  • 14
  • 29
2
votes
3 answers

Questions Using SVN as Document Control System

I am looking at a way to do better document control for a document library at my work consisting of SOPs, forms, etc. (Mostly Microsoft Word files.) As far as actual changes to documents, I am contemplating setting up a SVN repository to handle the…
B-Ray
  • 473
  • 1
  • 12
  • 29
1
vote
1 answer

Marklogic: DLS-INVALIDVERSION

when trying to access older versions of my managed XML files, it gives me something like: DLS-INVALIDVERSION: (err:FOER0000) /company/1448220.xml has no version number 3 in /MarkLogic/dls.xqy, at 1403:6, ... Indeed, the file of version 1, 2, 3…
0
votes
0 answers

Does Mongo db have a built in feature to auto increment document versions

Does Mongo DB has any built-in feature to auto increment versions of a document. If the newly inserted document is different then to create a new version and save previous as history. I have referred to the MongoDB Document Versioning Pattern blog,…
0
votes
1 answer

MongoDB document version update issue with JaVers

I was using Javers for mongoDB document versioning with springboot. It provides essential functionalities for versioning such as separate history collection called jv_snapshots, changed field list in Entity or ValueObject model for their…
Kavindu Vindika
  • 2,449
  • 1
  • 13
  • 20
0
votes
1 answer

How to implement multiple versions of an object in a database

I working on a program that stores proprietary objects in a database (as BLOBs). We'd like to add a versioning capabilities (so the user can store multiple versions of an object with timestamps, etc.). One approach is to use database and store each…
Igor
  • 33
  • 4
0
votes
1 answer

CouchDB view reduce one doc per key

I'm trying to solve what seems like a fairly simple problem with a couchDb view, but I'm not even getting close to the target with my result set. Rather than updating documents, I'm creating a new document every time as my versioning strategy, and…
Justin Grahn
  • 335
  • 3
  • 4
  • 14
0
votes
0 answers

S3 Versioning: Is just file level versioning possible and does it recognized file formats for intelligent diff calculation?

S3 Provides bucket level versioning if am right. But if I need versioning for only few particular files in a bucket, is it possible. Further does it apply any binary/text diff strategy (like git, svn) to save these versions of files or it just saves…
samshers
  • 1
  • 6
  • 37
  • 84
0
votes
0 answers

Force uncached resources from CDN

My job uses Akamai as a CDN for its marketing website. Often times there would be changes to css or js files that are cached on the CDN when accessing the site over the domain. We're running into issues where updated versions of these files are not…
yevg
  • 1,846
  • 9
  • 34
  • 70
0
votes
1 answer

Get the latest checked-in version (document) of a document from SP 2010 doc library

I have a document library with versioning enabled in SharePoint 2010. I want to get the file which is checked-in and for any checked-out file, i need to get its latest checked-in version (document). I am using c# server side object model on…
Kalpesh
  • 149
  • 1
  • 2
  • 13
0
votes
0 answers

Best ODM solution on PHP that support versioning

We are planning the develop of a CMS based in PHP. We are evaluating the possibility to use some open source ODM framework. We are a special interest in document versioning features. PHPCR We have strong expertise in Doctrine and so one good…
Fabiano Taioli
  • 5,270
  • 1
  • 35
  • 49
0
votes
1 answer

How to create a column that identifies whether or not a document is the latest in SharePoint?

I have a library in SharePoint where I am uploading company documents. The titles of the documents have version numbers in them already. So would like to create a column in the library that will indicate whether or not a particular document is the…
lungu
  • 47
  • 2
  • 10
1
2