Alan Orth
Alan Orth
> By removing the index field search_text, I was able to reduce the overall Lucene index size (Solr Core search) by 75% (55 MB instead of 225 MB). @saschaszott this...
@saschaszott after some consideration I realize that the point of adding all terms to one `search_text` field is so a user can search for let's say "livestock" everywhere, without having...
I wouldn't consider this a bug. If you have 1,056 search results—or 18,644—and you want to save them to CSV, then you should be able to. DSpace should either ask...
@mwoodiupui resource usage. As an anecdote, I frequently use `dspace metadata-export` on my entire repository to generate a CSV I can interrogate, update, etc. As our repository has grown, the...
This is also the cause of the following message in the backend `dspace.log`: ``` 2024-10-25 14:47:37,679 WARN fd564310-3d47-4a8e-9b4a-4af6105b9175 f3c1cdd4-00db-4bb8-bac2-9cbb86602209 org.dspace.app.rest.exception.DSpaceApiExceptionControllerAdvice @ Authentication is required (status:401 exception: Access is denied at:...
I have a DSpace 7.6 repository which has some missing and malformed issue dates. This patch doesn't seem to help with this particular absurdity. Both before and after applying this...
@nwoodward I added logging in the `ParseException` and never saw anything in the logs. I tried with `logger.info()` and `System.out.println()` and got nothing in `dspace.log` or the Tomcat log. I...
I don't think this is working for me. I did a full Discovery index after applying this patch and still see unreliable dates in the browse, perhaps caused by MM/DD/YYYY...
I'm looking at this again. It seems to me that DSpace claims to support ISO 8601. As ISO 8601 is _extremely complicated_, I think that, in reality, we only support...
I wrote a small Java test based on the code in `dspace-api/src/main/java/org/dspace/sort/OrderFormatDate.java` and the results were surprising. There are definitely : ```console $ javac DateTest.java $ java DateTest Attempting to...