We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
int id2=pageDao.getIdByTitle("Category:Islamic terrorism",simple,NameSpace.CATEGORY); Collection categoryList = localCategoryMemberDao.getCategoryIds(en, id2);
for(Integer e: categoryList) { System.out.println(e); System.out.println(pageDao.getById(simple, e)); }
gives me 33049350 LocalPage{nameSpace=CATEGORY, title=Category:Islam and violence (en), localId=33049350, language=English} 16702064 LocalPage{nameSpace=CATEGORY, title=Category:Islamic fundamentalism (en), localId=16702064, language=English} 6570232 LocalPage{nameSpace=CATEGORY, title=Category:Islamism (en), localId=6570232, language=English} 35622177 LocalPage{nameSpace=CATEGORY, title=Category:Middle Eastern studies (en), localId=35622177, language=English} 18501425 LocalPage{nameSpace=CATEGORY, title=Category:Religious terrorism (en), localId=18501425, language=English} 46182041 null watching into the db: select body from raw_page where page_id='46182041' 0 rows
so, it miss.. it's normal that there are missing categories?Isn't the en dump downloaded full? regards
The text was updated successfully, but these errors were encountered:
No branches or pull requests
int id2=pageDao.getIdByTitle("Category:Islamic terrorism",simple,NameSpace.CATEGORY);
Collection categoryList = localCategoryMemberDao.getCategoryIds(en, id2);
for(Integer e: categoryList)
{
System.out.println(e);
System.out.println(pageDao.getById(simple, e));
}
gives me
33049350
LocalPage{nameSpace=CATEGORY, title=Category:Islam and violence (en), localId=33049350, language=English}
16702064
LocalPage{nameSpace=CATEGORY, title=Category:Islamic fundamentalism (en), localId=16702064, language=English}
6570232
LocalPage{nameSpace=CATEGORY, title=Category:Islamism (en), localId=6570232, language=English}
35622177
LocalPage{nameSpace=CATEGORY, title=Category:Middle Eastern studies (en), localId=35622177, language=English}
18501425
LocalPage{nameSpace=CATEGORY, title=Category:Religious terrorism (en), localId=18501425, language=English}
46182041
null
watching into the db:
select body from raw_page where page_id='46182041'
0 rows
so, it miss.. it's normal that there are missing categories?Isn't the en dump downloaded full?
regards
The text was updated successfully, but these errors were encountered: