隨着@capaj's post一個輕微的扭曲[]。這是將所有文檔ID作爲字符串列表的通用方法。請注意使用Advanced.LuceneQuery<T>(idPropertyName)
,SelectFields<T>(idPropertyName)
和GetProperty(idPropertyName)
來使事物具有通用性。默認假設"Id"
是給定<T>
(應該是99.999%的情況)的有效屬性。如果你有其他一些財產作爲你的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;
}
的地方/我如何使用,這是使用BulkInsert
會議提出在RavenDb一個PatchRequest
時的一個例子。在某些情況下,我可能有成千上萬的文檔,並且無法承載將所有文檔加載到內存中,只是爲了修補操作而重新遍歷它們...因此只加載它們的字符串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);
}
}
}
希望它有幫助。 :)
我看到上述解決方案的工作,因爲總沒有。的記錄接近4000,所以沒有任何查詢將<30。只是好奇的是,處理類似情況的方法是什麼,其中總記錄數大於30 * 1024,即如果它們多於說31k數? – annantDev
@annantDev您可以跟蹤會話中發出的請求數量。一旦達到30,處置舊會話,創建新會話並繼續閱讀。 –