[Save this search]

Status
All
   Fixed (7187)
  Closed (4627)
Open (2556)
   Won't Fix (543)
   Duplicate (297)
   Invalid (217)
   Not A Problem (195)
Issue type
All
  Issue (2245)
  PR (311)
Author relation
All
  None (2035)
  Member (621)
  Contributor (427)
  New contributor (59)
Created
All
  Past day (5)
  Past 2 days (6)
  Past 3 days (9)
  Past week (10)
  Past month (46)
  Past 3 months (100)
  Past 6 months (144)
  Past year (281)
Updated
All
  Past day (12)
  Past 2 days (16)
  Past 3 days (22)
  Past week (28)
  Past month (68)
  Past 3 months (136)
  Past 6 months (360)
  Past year (491)
Updated ago
All
  > 1 day ago (2544)
  > 2 days ago (2540)
  > 3 days ago (2534)
  > 1 week ago (2528)
  > 1 month ago (2488)
  > 3 months ago (2420)
  > 1 year ago (2064)
Comment count
All
  0 (564)
  1 (359)
  2 - 5 (801)
  6 - 10 (433)
  10 - 20 (304)
  > 20 (166)
Reaction count
All
  0 (2273)
  1 (169)
  2 - 5 (92)
  6 - 10 (16)
  10 - 20 (5)
  > 20 (1)
Review Requested
All
  jpountz (15)
  mikemccand (9)
  benwtrent (5)
  rmuir (4)
  iverase (4)
  dweiss (3)
  msokolov (3)

See all 23...
Mentioned
All
  jpountz (94)
  mikemccand (72)
  rmuir (52)
  benwtrent (50)
  msokolov (41)
  uschindler (39)
  dweiss (19)

See all 202...
Reviewed
All
  jpountz (23)
  mikemccand (23)
  rmuir (16)
  benwtrent (15)
  msokolov (14)
  dweiss (11)
  uschindler (11)

See all 59...
Commented
All
  asfimport (1369)
  github-actions[bot] (241)
  jpountz (140)
  mikemccand (122)
  rmuir (100)
  benwtrent (86)
  msokolov (81)

See all 288...
User
All
  asfimport (1811)
  github-actions[bot] (279)
  mikemccand (207)
  jpountz (202)
  rmuir (133)
  benwtrent (125)
  msokolov (104)

See all 439...
Last comment user
All
  asfimport (1326)
  github-actions[bot] (236)
  mikemccand (32)
  jpountz (32)
  rmuir (26)
  benwtrent (16)
  gsmiller (15)

See all 152...
Draft
All
  No (259)
  Yes (52)
Component
All
  core (592)
  analysis (150)
  highlighter (47)
  spatial (41)
  facet (39)
  queryparser (27)
  test-framework (26)

See all 23...
Type
All
  enhancement (1174)
  bug (725)
  task (198)
  test (78)
  documentation (22)
Labels
All
  Stale (234)
  legacy-jira-fix-versio... (214)
  legacy-jira-fix-versio... (169)
  affects-version:4.0-ALPHA (81)
  tool:build (54)
  vector-based-search (47)
  affects-version:6.0 (37)

See all 157...
Commits?
All
  No (2556)
Reporter
All
  rmuir (271)
  mikemccand (156)
  jpountz (126)
  dsmiley (68)
  uschindler (52)
  romseygeek (42)
  iverase (42)

See all 742...
Assignee
All
  Unassigned (2314)
  mikemccand (35)
  uschindler (31)
  romseygeek (27)
  dsmiley (22)
  rmuir (15)
  jpountz (11)

See all 45...
  Filters: Status (Open),  Issue type,  Author relation,  Created,  Updated,  Updated ago,  Comment count,  Reaction count,  Review Requested,  Mentioned,  Reviewed,  Commented,  User,  Last comment user,  Draft,  Component,  Type,  Labels,  Commits?,  Reporter,  Assignee

#15558 PR: Refactor QueryCache to improve performance
1.7 hours ago  20 comments  0 votes  0 watches  BaurzhanSakharievbenwtrentgithub-actions[bot]mergify[bot]msfrohsgup432
Description Related issue - https://github.com/apache/lucene/issues/14222 Major changes: ... With each partition having its own read/write lock to improve concurrency.
    msfroh 1.7 hours ago:  IMO, this change is pretty good as implemented. While I'm slightly nervous about the implications of modifying the query cache implementation, I ... For those of us who do want a query cache, I think this one should perform much better in ...
    github-actions[bot] 1.7 days ago:  This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the dev@lucene.apache.org list. Thank you for your contribution!

#15951 PR: Fix WindowsFS onClose race condition
2.1 hours ago  6 comments  0 votes  0 watches  github-actions[bot]rmuirszybia
- If i create an InputStream on a target file, and then close it, if i concurrently (before onClose ... = null) { logger.info("Race reproduced: ", e); } } ` ` [2026-04- ...
    szybia 2.1 hours ago:  thank you! i don't have write access so leaving up to you to merge 🚀
    rmuir 2.2 hours ago:  10.5 is good, i'll backport it. I don't know if there will be a 10.4.1, but if someone wants to make one we could then cherry-pick ...

#15950 PR: Add JMH benchmark comparing various sort algorithms specifically for sorting ScoreDoc[] of varying ...
4 hours ago  0 comments  0 votes  0 watches  gsmillermikemccandzihanx
[Spinoff from @zihanx's recent PR (15803) adding ReaderUtil.partitionByLeaf helper to collate any ... TL;DR: see this cool benchmark results UI testing various algorithms to sort ScoreDoc[] (smaller is ... The hits from a Lucene query (ScoreDoc[]) come out sorted by something important to the user (e.g. ...

#15938 PR: Use binary search partitioning in ReaderUtil#partitionByLeaf
4.6 hours ago  6 comments  0 votes  0 watches  github-actions[bot]gsmillerjainankitkmikemccand
Description This change modifies the "partition" step of ReaderUtilpartitionByLeaf to leverage ... . * Current Implementation: Iterates a sorted list of docIDs, checking each against leaf/segment ...
    mikemccand 4.6 hours ago:  I love it -- it's also a nice code simplification since we no longer need the additional / ... Thanks @gsmiller. I also made a fun little JMH benchmark with CC (Claude Code) ... will try to open PR soon.
    mikemccand 4.6 hours ago:  Maybe assert count > 0 since we think we're always handling/optimizing the empty case above?

#15949 PR: Use junit5 engine vintage runner to run junit4 tests
7.2 hours ago  1 comments  0 votes  0 watches  dweissgithub-actions[bot]rmuir
This is a dodge-the-problem workaround for gradle/gradle36508 which switches test execution to ... This is also the first step to eventually upgrade to junit jupiter... Not that it's a dramatic change to any existing tests but features of jupiter are quite nice.

#15948 PR: Improve BayesianScoreQuery and LogOddsFusionQuery with base rate prior, weighted Log-OP, and ...
14 hours ago  0 comments  0 votes  0 watches  github-actions[bot]jaepil
# Summary Follow-up to 15827. This PR extends BayesianScoreQuery and LogOddsFusionQuery with three improvements: - ** ... Sample N documents randomly from the index (Fisher-Yates partial shuffle) 2.

#15947 PR: Optimize GroupFacetCollector.getFacetEntries()
15.9 hours ago  0 comments  0 votes  0 watches  gaobinlonggithub-actions[bot]
Description The method GroupFacetCollector.getFacetEntries() can be optimized by: 1) Initial ...

[21.1 msec search, 22.0 msec total]