@capaj の投稿を少しひねりました。すべてのドキュメント ID を文字列のリストとして取得する一般的な方法を次に示します。を使用してAdvanced.LuceneQuery<T>(idPropertyName)
、物事を一般的にすることに注意してください。デフォルトでは、指定されたプロパティが有効であると想定されます(99.999% の確率でそうなるはずです)。他のプロパティがある場合は、それを渡すこともできます。SelectFields<T>(idPropertyName)
GetProperty(idPropertyName)
"Id"
<T>
Id
public static List<string> getAllIds<T>(DocumentStore docDB, string idPropertyName = "Id") {
return getAllIdsFrom<T>(0, new List<string>(), docDB, idPropertyName);
}
public static List<string> getAllIdsFrom<T>(int startFrom, List<string> list, DocumentStore docDB, string idPropertyName ) {
var allUsers = list;
using (var session = docDB.OpenSession())
{
int queryCount = 0;
int start = startFrom;
while (true)
{
var current = session.Advanced.LuceneQuery<T>().Take(1024).Skip(start).SelectFields<T>(idPropertyName).ToList();
queryCount += 1;
if (current.Count == 0)
break;
start += current.Count;
allUsers.AddRange(current.Select(t => (t.GetType().GetProperty(idPropertyName).GetValue(t, null)).ToString()));
if (queryCount >= 28)
{
return getAllIdsFrom<T>(start, allUsers, docDB, idPropertyName);
}
}
}
return allUsers;
}
これを使用する場所/方法の例はPatchRequest
、セッションを使用して RavenDb で を作成する場合BulkInsert
です。場合によっては、何十万ものドキュメントがあり、パッチ操作のためにそれらを再度反復するためだけにすべてのドキュメントをメモリにロードする余裕がない可能性があります...したがって、それらの文字列 ID のみをロードしてPatch
指図。
void PatchRavenDocs()
{
var store = new DocumentStore
{
Url = "http://localhost:8080",
DefaultDatabase = "SoMeDaTaBaSeNaMe"
};
store.Initialize();
// >>>here is where I get all the doc IDs for a given type<<<
var allIds = getAllIds<SoMeDoCuMeNtTyPe>(store);
// create a new patch to ADD a new int property to my documents
var patches = new[]{ new PatchRequest { Type = PatchCommandType.Set, Name = "SoMeNeWPrOpeRtY" ,Value = 0 }};
using (var s = store.BulkInsert()){
int cntr = 0;
Console.WriteLine("ID Count " + allIds.Count);
foreach(string id in allIds)
{
// apply the patch to my document
s.DatabaseCommands.Patch(id, patches);
// spit out a record every 2048 rows as a basic sanity check
if ((cntr++ % 2048) == 0)
Console.WriteLine(cntr + " " + id);
}
}
}
それが役に立てば幸い。:)